aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorQiLiang <liangqi1@huawei.com>2016-06-07 02:06:42 +0800
committerqi liang <liangqi1@huawei.com>2016-06-07 01:44:05 +0000
commitcccd08f57d3d13bd9f1d541740d7a67fbbca08c4 (patch)
tree0598b4c3defa86036fc0f54852913d270755b8d4 /build
parented9f4281ebb2b719fc82f485a6f753c6ee5136a7 (diff)
Fix make_repo.sh args passing
JIRA: COMPASS-418 Change-Id: I7be1cd58632d0cdda70a954db6dc53ecff581f22 Signed-off-by: QiLiang <liangqi1@huawei.com>
Diffstat (limited to 'build')
-rwxr-xr-xbuild/make_repo.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/make_repo.sh b/build/make_repo.sh
index 32853e99..c9c70d4c 100755
--- a/build/make_repo.sh
+++ b/build/make_repo.sh
@@ -222,8 +222,8 @@ function main()
if [[ $# -eq 0 ]]; then
make_all_repo
else
- make_repo $*
+ make_repo "$@"
fi
}
-main $*
+main "$@"