Skip to content

Commit 16348ec

Browse files
committed
Fix #25
- introduce naming convention and architecture detection
1 parent 54f9b24 commit 16348ec

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
instance creation
22
pharo
3-
^ self type: 'pharo'
3+
^ self type: 'pharo-vm'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
instance creation
22
pharoS
3-
^ (self type: 'pharoS')
3+
^ (self type: 'pharo-stackvm')
44
basename: 'vmS';
55
yourself

mc/ZeroConf.package/ZeroConfVMScript.class/instance/generateDetectSystemProperties.st

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ script generation
22
generateDetectSystemProperties
33
self
44
<<== 'DETECT SYSTEM PROPERTIES';
5-
generatePlatformTest
5+
generatePlatformTest;
6+
<< 'VM_ARCH=`uname -m`'; cr;
7+
<< 'OSNAME=`uname -o`'; cr
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
accessing
22
vmUrl
3-
^'${FILES_URL}/${VM_TYPE}${VM_ARCH}-${OS}-${VM_STATUS}.zip'
3+
^'${FILES_URL}/${VM_TYPE}-${OSNAME}-${VM_ARCH}-${VM_STATUS}.zip'

0 commit comments

Comments
 (0)