Code Review
/
compass4nfv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
ed9f428
)
Fix make_repo.sh args passing
07/15207/2
author
QiLiang
<liangqi1@huawei.com>
Mon, 6 Jun 2016 18:06:42 +0000
(
02:06
+0800)
committer
qi liang
<liangqi1@huawei.com>
Tue, 7 Jun 2016 01:44:05 +0000
(
01:44
+0000)
JIRA: COMPASS-418
Change-Id: I7be1cd58632d0cdda70a954db6dc53ecff581f22
Signed-off-by: QiLiang <liangqi1@huawei.com>
build/make_repo.sh
patch
|
blob
|
history
diff --git
a/build/make_repo.sh
b/build/make_repo.sh
index
32853e9
..
c9c70d4
100755
(executable)
--- 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
"$@"