File tree 8 files changed +9
-9
lines changed
8 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
working_tree_root=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
3
- $working_tree_root /run.sh build-managed $*
3
+ $working_tree_root /run.sh build-managed " $@ "
4
4
exit $?
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
working_tree_root=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
3
3
# The Run Command Tool is calling src/Native/build-native.sh
4
- $working_tree_root /run.sh build-native $*
4
+ $working_tree_root /run.sh build-native " $@ "
5
5
exit $?
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
working_tree_root=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
3
- $working_tree_root /run.sh build-managed -packages $*
3
+ $working_tree_root /run.sh build-managed -packages " $@ "
4
4
exit $?
Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ if [ "$1" != "" ] && [[ "$1" != -* ]]; then
38
38
fi
39
39
fi
40
40
41
- " $__scriptpath /build-native.sh" $*
41
+ " $__scriptpath /build-native.sh" " $@ "
42
42
if [ $? -ne 0 ]; then
43
43
exit 1
44
44
fi
45
45
46
- " $__scriptpath /build-managed.sh" -BuildPackages=true $*
46
+ " $__scriptpath /build-managed.sh" -BuildPackages=true " $@ "
47
47
exit $?
Original file line number Diff line number Diff line change @@ -33,5 +33,5 @@ if [ $# == 0 ]; then
33
33
__args=-b
34
34
fi
35
35
36
- $__working_tree_root /run.sh clean $__args $*
36
+ $__working_tree_root /run.sh clean $__args " $@ "
37
37
exit $?
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
working_tree_root=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
3
- $working_tree_root /run.sh publish-packages $*
3
+ $working_tree_root /run.sh publish-packages " $@ "
4
4
exit $?
Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ __toolRuntime=$__scriptpath/Tools
14
14
__dotnet=$__toolRuntime /dotnetcli/dotnet
15
15
16
16
cd $__scriptpath
17
- $__dotnet $__toolRuntime /run.exe $__scriptpath /config.json $*
17
+ $__dotnet $__toolRuntime /run.exe $__scriptpath /config.json " $@ "
18
18
exit $?
Original file line number Diff line number Diff line change 6
6
7
7
working_tree_root=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
8
8
9
- $working_tree_root /run.sh sync $__args $*
9
+ $working_tree_root /run.sh sync $__args " $@ "
10
10
exit $?
You can’t perform that action at this time.
0 commit comments