We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d352fc commit 4cd689aCopy full SHA for 4cd689a
eng/native/build-commons.sh
@@ -48,7 +48,9 @@ check_prereqs()
48
49
build_native()
50
{
51
- eval "$__RepoRootDir/eng/native/version/copy_version_files.sh"
+ if [[ ! -e "$__RepoRootDir/artifacts/obj/_version.c" ]]; then
52
+ eval "$__RepoRootDir/eng/native/version/copy_version_files.sh"
53
+ fi
54
55
targetOS="$1"
56
platformArch="$2"
@@ -257,7 +259,7 @@ while :; do
257
259
break
258
260
fi
261
- lowerI="$(echo "$1" | tr "[:upper:]" "[:lower:]")"
262
+ lowerI="$(echo "${1/--/-}" | tr "[:upper:]" "[:lower:]")"
263
case "$lowerI" in
264
-\?|-h|--help)
265
usage
0 commit comments