Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorArun Thondapu2017-04-10 15:00:31 +0000
committerArun Thondapu2017-04-10 15:00:31 +0000
commitf3e3c0ee5082751c586876905fd821699849d46a (patch)
treeef35522ad4fc1ffa95f471dc5c4a7129cf1c9177 /releng
parentcc5d8fd172cea69328eb6c961f434ab5fa06c26c (diff)
downloadrt.equinox.framework-f3e3c0ee5082751c586876905fd821699849d46a.tar.gz
rt.equinox.framework-f3e3c0ee5082751c586876905fd821699849d46a.tar.xz
rt.equinox.framework-f3e3c0ee5082751c586876905fd821699849d46a.zip
Binaries v20170410-1100
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml16
1 files changed, 9 insertions, 7 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index 6813773cc..ec35a1b6a 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -86,13 +86,15 @@
<resolveProperty name="machine" value="m_${os}.${arch}" />
<script language="javascript">
- a = project.getProperty('machine').split(':');
-
- project.setProperty('machine', a[0]);
- if ( a[1] == null ) {
- project.setProperty('port', '22');
- } else {
- project.setProperty('port', a[1]);
+ a = project.getProperty('machine');
+ if (a != null) {
+ a = a.split(':');
+ project.setProperty('machine', a[0]);
+ if ( a[1] == null ) {
+ project.setProperty('port', '22');
+ } else {
+ project.setProperty('port', a[1]);
+ }
}
</script>

Back to the top