Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-02-03 05:43:19 +0000
committerDavid Williams2013-02-03 05:43:19 +0000
commit5d4ebf33cd23da42e78351e18b6eef3f5dddc949 (patch)
tree654f8f51156bdb04a12fa3bc7b1c9c5e15886625 /production
parent733ce42e83494a4ba63a794076955379d375098e (diff)
downloadeclipse.platform.releng.aggregator-5d4ebf33cd23da42e78351e18b6eef3f5dddc949.tar.gz
eclipse.platform.releng.aggregator-5d4ebf33cd23da42e78351e18b6eef3f5dddc949.tar.xz
eclipse.platform.releng.aggregator-5d4ebf33cd23da42e78351e18b6eef3f5dddc949.zip
Bug 399795 - misc changes to production script variable names, functions
Diffstat (limited to 'production')
-rw-r--r--production/gather-parts.sh4
-rw-r--r--production/get-aggregator.sh4
-rw-r--r--production/install-parent.sh4
-rw-r--r--production/parse-logs.sh4
-rw-r--r--production/pom-version-updater.sh4
-rw-r--r--production/publish-eclipse.sh4
-rw-r--r--production/run-maven-build.sh4
-rw-r--r--production/tag-build-input.sh4
-rw-r--r--production/update-build-input.sh4
9 files changed, 18 insertions, 18 deletions
diff --git a/production/gather-parts.sh b/production/gather-parts.sh
index a148242eb..4c0c5db9c 100644
--- a/production/gather-parts.sh
+++ b/production/gather-parts.sh
@@ -16,9 +16,9 @@ pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
popd >/dev/null
-. $SCRIPT_PATH/build-functions.sh
+source $SCRIPT_PATH/build-functions.sh
-. "$1"
+source "$1"
cd $BUILD_ROOT
diff --git a/production/get-aggregator.sh b/production/get-aggregator.sh
index f2054d6c0..0960be247 100644
--- a/production/get-aggregator.sh
+++ b/production/get-aggregator.sh
@@ -16,9 +16,9 @@ pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
popd >/dev/null
-. $SCRIPT_PATH/build-functions.sh
+source $SCRIPT_PATH/build-functions.sh
-. "$1"
+source "$1"
cd $BUILD_ROOT
diff --git a/production/install-parent.sh b/production/install-parent.sh
index 444216096..2a4140920 100644
--- a/production/install-parent.sh
+++ b/production/install-parent.sh
@@ -16,9 +16,9 @@ pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
popd >/dev/null
-. $SCRIPT_PATH/build-functions.sh
+source $SCRIPT_PATH/build-functions.sh
-. "$1"
+source "$1"
cd $BUILD_ROOT
diff --git a/production/parse-logs.sh b/production/parse-logs.sh
index ce300058e..c48d567a5 100644
--- a/production/parse-logs.sh
+++ b/production/parse-logs.sh
@@ -16,9 +16,9 @@ pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
popd >/dev/null
-. $SCRIPT_PATH/build-functions.sh
+source $SCRIPT_PATH/build-functions.sh
-. "$1"
+source "$1"
cd $BUILD_ROOT
diff --git a/production/pom-version-updater.sh b/production/pom-version-updater.sh
index 5f599baf2..aebd2bcb7 100644
--- a/production/pom-version-updater.sh
+++ b/production/pom-version-updater.sh
@@ -16,9 +16,9 @@ pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
popd >/dev/null
-. $SCRIPT_PATH/build-functions.sh
+source $SCRIPT_PATH/build-functions.sh
-. "$1"
+source "$1"
cd $BUILD_ROOT
diff --git a/production/publish-eclipse.sh b/production/publish-eclipse.sh
index b02ddbcf2..b542359da 100644
--- a/production/publish-eclipse.sh
+++ b/production/publish-eclipse.sh
@@ -16,9 +16,9 @@ pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
popd >/dev/null
-. $SCRIPT_PATH/build-functions.sh
+source $SCRIPT_PATH/build-functions.sh
-. "$1"
+source "$1"
cd $BUILD_ROOT
diff --git a/production/run-maven-build.sh b/production/run-maven-build.sh
index 0d5a9bc63..d098f1c26 100644
--- a/production/run-maven-build.sh
+++ b/production/run-maven-build.sh
@@ -16,9 +16,9 @@ pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
popd >/dev/null
-. $SCRIPT_PATH/build-functions.sh
+source $SCRIPT_PATH/build-functions.sh
-. "$1"
+source "$1"
cd $BUILD_ROOT
diff --git a/production/tag-build-input.sh b/production/tag-build-input.sh
index b109e9785..9c6457fe4 100644
--- a/production/tag-build-input.sh
+++ b/production/tag-build-input.sh
@@ -16,9 +16,9 @@ pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
popd >/dev/null
-. $SCRIPT_PATH/build-functions.sh
+source $SCRIPT_PATH/build-functions.sh
-. "$1"
+source "$1"
cd $BUILD_ROOT
diff --git a/production/update-build-input.sh b/production/update-build-input.sh
index a74521196..78e68ef2d 100644
--- a/production/update-build-input.sh
+++ b/production/update-build-input.sh
@@ -16,9 +16,9 @@ pushd $( dirname $0 ) >/dev/null
SCRIPT_PATH=${SCRIPT_PATH:-$(pwd)}
popd >/dev/null
-. $SCRIPT_PATH/build-functions.sh
+source $SCRIPT_PATH/build-functions.sh
-. "$1"
+source "$1"
cd $BUILD_ROOT

Back to the top