Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-04-22 21:55:49 +0000
committerDavid Williams2013-04-22 21:55:49 +0000
commit37e2a90ee2d63953fa1c92281a62d685f99627d0 (patch)
tree6f2075d4f3a8f0da86ff83cce55ef397736742b0 /production/publish-repo.sh
parent362d5d33d6d52f6fb514f239538ae955bf6b2840 (diff)
downloadeclipse.platform.releng.aggregator-37e2a90ee2d63953fa1c92281a62d685f99627d0.tar.gz
eclipse.platform.releng.aggregator-37e2a90ee2d63953fa1c92281a62d685f99627d0.tar.xz
eclipse.platform.releng.aggregator-37e2a90ee2d63953fa1c92281a62d685f99627d0.zip
Bug 402448 - [CBI] Run traditional mirror/comparator to catch corner
cases (prep)
Diffstat (limited to 'production/publish-repo.sh')
-rw-r--r--production/publish-repo.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/production/publish-repo.sh b/production/publish-repo.sh
index 3bf9f8338..dbc80e0a4 100644
--- a/production/publish-repo.sh
+++ b/production/publish-repo.sh
@@ -79,9 +79,9 @@ echo "siteDirOnBuildMachine: ${siteDirOnBuildMachine}"
repositoryDir=${buildDirectory}/repository
echo "repositoryDir: ${repositoryDir}"
-# leave both old and new methods for now, so true ==> old straight copy.
-# change to false to test new method.
-if (( true ))
+# leave both old and new methods for now, so true (1) ==> old straight copy.
+# change to false (0) to test new method.
+if (( 1 ))
then
# for now, straight copy from what was produced to local build machine directory.
# This is partially done so that

Back to the top