Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Le Fevre2017-10-26 13:16:07 +0000
committerFrancois Le Fevre2017-10-26 13:16:07 +0000
commit62b24eff0f0aa80ae05cf36b8dee6f5e9acfd663 (patch)
tree2b64b8838bde31cb698b883463e43ea0294768b7
parentea6a98bd7c7ce06b6f7a64ea9570723d9d304da8 (diff)
downloadorg.eclipse.papyrus.tools-62b24eff0f0aa80ae05cf36b8dee6f5e9acfd663.tar.gz
org.eclipse.papyrus.tools-62b24eff0f0aa80ae05cf36b8dee6f5e9acfd663.tar.xz
org.eclipse.papyrus.tools-62b24eff0f0aa80ae05cf36b8dee6f5e9acfd663.zip
Bug 526505 - [COMPONENTS] add meta to the script
Change-Id: I3eb8de3b33a52267ee34d5b1fe943ff235495cec Signed-off-by: Francois Le Fevre <francois.le-fevre@cea.fr>
-rwxr-xr-xcomponents/org.eclipse.papyrus.components.parent/src/main/script/publish.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/components/org.eclipse.papyrus.components.parent/src/main/script/publish.sh b/components/org.eclipse.papyrus.components.parent/src/main/script/publish.sh
index 976203a..347f833 100755
--- a/components/org.eclipse.papyrus.components.parent/src/main/script/publish.sh
+++ b/components/org.eclipse.papyrus.components.parent/src/main/script/publish.sh
@@ -118,7 +118,8 @@ jobDir=$(readlink -f ~/.hudson/jobs/${jobName}/builds/${buildId})
if [ -z $jobDir ];
then
- echo "The specified buildId does not refer to an existing build: $buildId , see ${jobName} at ~/.hudson/jobs/${jobName}/builds/${buildId}"
+ echo "The specified buildId does not refer to an existing build: $buildId , ${jobName} at ~/.hudson/jobs/${jobName}/builds/${buildId}"
+ echo "Note that the jobName in this script is typically a concatenation of the jobName provided by the user and the target eclipse version (see job configuration)."
exit 1
fi

Back to the top