Skip to content

Commit

Permalink
Issue #261: more script typos ... [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
dalehenrich committed Oct 25, 2019
1 parent 26fff8d commit badceb1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 20 deletions.
16 changes: 0 additions & 16 deletions shared/repos/GsDevKit_launcher/'

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ startNetldi: stoneName args: startNetldiCommandLineArgs
| commandPath |
commandPath := '$GS_HOME/bin/startNetldi' asFileReference pathString. "Use asFileReference to resolve $GS_HOME in commandPath"
self
execute: commandPath , ' ' stoneName , ' ' , startNetldiCommandLineArgs
execute: commandPath , ' ' , stoneName , ' ' , startNetldiCommandLineArgs
exitStatusBlock: [ :exitStatus :stdout :stderr |
exitStatus ~= 0
ifTrue: [ Error signal: 'Error , ' , stderr asString ].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ stopNetldi: stoneName
| commandPath |
commandPath := '$GS_HOME/bin/stopNetldi' asFileReference pathString. "Use asFileReference to resolve $GS_HOME in commandPath"
self
execute: commandPath , ' ' stoneName
execute: commandPath , ' ' , stoneName
exitStatusBlock: [ :exitStatus :stdout :stderr |
exitStatus ~= 0
ifTrue: [ Error signal: 'Error , ' , stderr asString ].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ doCreateStone
put: #'skipped' -> ('stone already exists at ' , stoneDir pathString) ]
ifFalse: [
self class createStone: self stoneName version: '3.5.0' args: '-g'.
customEnv := stoneDir / 'custome_stone.env'.
customEnv := stoneDir / 'custom_stone.env'.
contents := customEnv contents.
customEnv
writeStreamDo: [ :stream |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ GdkL_Install_Launcher >> doCreateStone [
put: #'skipped' -> ('stone already exists at ' , stoneDir pathString) ]
ifFalse: [
self class createStone: self stoneName version: '3.5.0' args: '-g'.
customEnv := stoneDir / 'custome_stone.env'.
customEnv := stoneDir / 'custom_stone.env'.
contents := customEnv contents.
customEnv
writeStreamDo: [ :stream |
Expand Down

0 comments on commit badceb1

Please sign in to comment.