Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build-functions.sh')
-rwxr-xr-xscripts/build-functions.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/build-functions.sh b/scripts/build-functions.sh
index 67841f8c2..3e8c143b0 100755
--- a/scripts/build-functions.sh
+++ b/scripts/build-functions.sh
@@ -218,10 +218,12 @@ fn-git-dir ()
echo $GIT_CACHE/$( basename "$URL" .git )
}
-# USAGE: fn-build-dir ROOT BRANCH BUILD_ID
+# USAGE: fn-build-dir ROOT BRANCH BUILD_ID STREAM
# ROOT: /shared/eclipse/builds
# BRANCH: R4_2_maintenance
# BUILD_ID: M20121119-1900
+# STREAM: 4.3.0
+# TODO: no longer need branch
fn-build-dir ()
{
ROOT="$1"; shift
@@ -234,7 +236,7 @@ fn-build-dir ()
then
dropDirSegment=siteDir/eclipse/downloads/drops4cbibased
fi
- echo $ROOT/$BRANCH/$dropDirSegment/$BUILD_ID
+ echo $ROOT/$dropDirSegment/$BUILD_ID
}
# USAGE: fn-basebuilder-dir ROOT BRANCH BASEBUILDER_TAG

Back to the top