diff options
author | Sravan Kumar Lakkimsetti | 2019-10-31 07:53:09 +0000 |
---|---|---|
committer | Sravan Kumar Lakkimsetti | 2019-10-31 07:53:09 +0000 |
commit | 92e4fcdb579a933dc766697c535c676098d26423 (patch) | |
tree | ce7d14ead7089fb64f83a5e12ad53b082a8bdd68 /cje-production | |
parent | 386577f0af318e81218edbb21570e87a7a8802b1 (diff) | |
download | eclipse.platform.releng.aggregator-92e4fcdb579a933dc766697c535c676098d26423.tar.gz eclipse.platform.releng.aggregator-92e4fcdb579a933dc766697c535c676098d26423.tar.xz eclipse.platform.releng.aggregator-92e4fcdb579a933dc766697c535c676098d26423.zip |
Bug 552552 - Develop scripts to add to repo and delete from repo for JIRO use
Change-Id: Idc6cbab57f54899d4d22be36e6b3ccdef52cc4a2
Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'cje-production')
-rwxr-xr-x | cje-production/scripts/getEclipsePlatform.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cje-production/scripts/getEclipsePlatform.sh b/cje-production/scripts/getEclipsePlatform.sh index c7f4f4a71..cdbbe0ada 100755 --- a/cje-production/scripts/getEclipsePlatform.sh +++ b/cje-production/scripts/getEclipsePlatform.sh @@ -18,9 +18,9 @@ downloadPath=/home/data/httpd/download.eclipse.org/eclipse/downloads/drops4 #get latest release folder -epRelDir=$(ssh genie.releng@projects-storage.eclipse.org ls -d --format=single-column ${downloadPath}/R-*|sort|tail -1) +epRelDir=$(ls -d --format=single-column ${downloadPath}/R-*|sort|tail -1) #get eclipse platform product -scp genie.releng@projects-storage.eclipse.org:${epRelDir}/eclipse-platform-*-linux-gtk-x86_64.tar.gz . +cp $epRelDir}/eclipse-platform-*-linux-gtk-x86_64.tar.gz . tar xzf eclipse-platform-*-linux-gtk-x86_64.tar.gz |