Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcje-production/scripts/getEclipsePlatform.sh4
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

Back to the top