Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit b1cc035

Browse files
author
jbeisner
committed
Variable name change.
1 parent 878821a commit b1cc035

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

run-build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ done
126126
# The first 'pass' call to "dotnet msbuild build.proj" has a hard-coded "WriteDynamicPropsToStaticPropsFiles" target
127127
# therefore, this call should not have other targets defined. Remove all targets passed in as 'extra parameters'.
128128
argsnotargets=( )
129-
for element in ${args[@]}
129+
for arg in ${args[@]}
130130
do
131-
if [[ $element != '/t'* ]] && [[ $element != '/T'* ]]; then
132-
argsnotargets+=($element)
131+
if [[ $arg != '/t'* ]] && [[ $arg != '/T'* ]]; then
132+
argsnotargets+=($arg)
133133
fi
134134
done
135135

0 commit comments

Comments
 (0)