Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-02-10 00:19:24 +0000
committerDavid Williams2013-02-10 00:19:24 +0000
commit94ab7c0ab50c7a80bed62871e73fae59bdb44483 (patch)
tree8f3d0e0c5edbc2606df8a7c8ce3dbc5345bdd4ef /production/build-functions.sh
parentfdded45b360adbd93d8e40cb3ce3e28785e80278 (diff)
downloadeclipse.platform.releng.aggregator-94ab7c0ab50c7a80bed62871e73fae59bdb44483.tar.gz
eclipse.platform.releng.aggregator-94ab7c0ab50c7a80bed62871e73fae59bdb44483.tar.xz
eclipse.platform.releng.aggregator-94ab7c0ab50c7a80bed62871e73fae59bdb44483.zip
Bug 394293 - [CBI] launch the tests
Diffstat (limited to 'production/build-functions.sh')
-rw-r--r--production/build-functions.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/production/build-functions.sh b/production/build-functions.sh
index ca7a6f007..6e5c0ee25 100644
--- a/production/build-functions.sh
+++ b/production/build-functions.sh
@@ -61,13 +61,13 @@ fn-git-clone ()
{
URL="$1"; shift
if [ $# -gt 0 ]; then
- BRANCH="-b $1"; shift
+ BRANCH_CMD="-b $1"; shift
fi
if [ $# -gt 0 ]; then
TARGET_DIR="$1"; shift
fi
- echo git clone $BRANCH $URL $TARGET_DIR
- git clone $BRANCH $URL $TARGET_DIR
+ echo git clone $BRANCH_CMD $URL $TARGET_DIR
+ git clone $BRANCH_CMD $URL $TARGET_DIR
}
# USAGE: fn-git-checkout BRANCH | TAG

Back to the top