-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not try to guess image pharo version. Too unreliable.
- Loading branch information
Showing
30 changed files
with
123 additions
and
716 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 0 additions & 37 deletions
37
src/PharoLauncher-Core/PhLImageVersionDeterminationError.class.st
This file was deleted.
Oops, something went wrong.
22 changes: 22 additions & 0 deletions
22
src/PharoLauncher-Core/PhLImageVersionFileNotFound.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
" | ||
Error thrown when Pharo Launcher did not succeed to determine the Pharo version of the image to launch. | ||
Probably, the run command failed. | ||
I hold the command run to determoine the version so that it can be reused for debugging purposes. | ||
" | ||
Class { | ||
#name : #PhLImageVersionFileNotFound, | ||
#superclass : #PhLError, | ||
#category : #'PharoLauncher-Core-Download' | ||
} | ||
|
||
{ #category : #accessing } | ||
PhLImageVersionFileNotFound >> longDescription [ | ||
^ PhLImage versionFileName , | ||
' file was not found for your image, and probably your VMs are not up to date. | ||
Please, contact us at http://pharo.org/community' | ||
] | ||
|
||
{ #category : #accessing } | ||
PhLImageVersionFileNotFound >> name [ | ||
^ 'Image version file ', PhLImage versionFileName , ' not found!' | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
src/PharoLauncher-Core/PhLToggleVmPrivateVmCommand.class.st
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.