Skip to content

Commit 1f21b95

Browse files
authored
Fix build path (#121)
1 parent 01fa094 commit 1f21b95

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/build/build.sh" --build --restore $@
16+
"$scriptroot/eng/common/build.sh" --build --restore $@

restore.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/build/build.sh" --restore $@
16+
"$scriptroot/eng/common/build.sh" --restore $@

test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/build/build.sh" --test $@
16+
"$scriptroot/eng/common/build.sh" --test $@

0 commit comments

Comments
 (0)