diff options
author | QiLiang <liangqi1@huawei.com> | 2016-06-07 02:06:42 +0800 |
---|---|---|
committer | qi liang <liangqi1@huawei.com> | 2016-06-07 01:44:05 +0000 |
commit | cccd08f57d3d13bd9f1d541740d7a67fbbca08c4 (patch) | |
tree | 0598b4c3defa86036fc0f54852913d270755b8d4 /build | |
parent | ed9f4281ebb2b719fc82f485a6f753c6ee5136a7 (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-x | build/make_repo.sh | 4 |
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 "$@" |