-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit 3abd0bf Merge: 82bfd1c 2f03577 Author: Dale Henrichs <dale.henrichs@gemtalksystems.com> Date: Thu Jun 27 08:43:55 2024 -0700 Merge branch 'v2' of github.com:GsDevKit/GsDevKit_stones into v2 commit 82bfd1c Author: Dale Henrichs <dale.henrichs@gemtalksystems.com> Date: Thu Jun 27 08:43:28 2024 -0700 Issue #2: add informative error messages when the registry variables have not been set commit 2f03577 Author: Dale Henrichs <dale.henrichs@gemtalksystems.com> Date: Mon Jun 24 18:35:44 2024 -0700 looks like one needs to use v2.1 for 3.7.1 and mac commit fbd6e72 Author: Dale Henrichs <dale.henrichs@gemtalksystems.com> Date: Mon Jun 24 17:41:16 2024 -0700 update to use v4 of actions (node 20) commit 0cd5e4c Author: Dale Henrichs <dale.henrichs@gemtalksystems.com> Date: Mon Jun 24 17:35:05 2024 -0700 3.7.1 and macos-14 not happy commit fdfa86d Author: Dale Henrichs <dale.henrichs@gemtalksystems.com> Date: Mon Jun 24 11:49:17 2024 -0700 3.6.7 not available commit fba9723 Author: Dale Henrichs <dale.henrichs@gemtalksystems.com> Date: Mon Jun 24 10:10:31 2024 -0700 update the lineup ... macos-11 no longer supported
- Loading branch information
1 parent
1f27167
commit 4b7d122
Showing
5 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
7 changes: 6 additions & 1 deletion
7
src/GsDevKit_stones-Core.package/GDKStonesRegistry.class/instance/productDirectory.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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
accessing | ||
productDirectory | ||
^productDirectory | ||
productDirectory | ||
ifNil: [ | ||
self | ||
error: | ||
'The productDirectory for this registry has not been set. Please run registerProductDirectory.solo to set the productDirectory.' ]. | ||
^ productDirectory |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Core.package/GDKStonesRegistry.class/instance/projectDirectory.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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
accessing | ||
projectDirectory | ||
projectDirectory | ||
ifNil: [ | ||
self | ||
error: | ||
'The projectDirectory for this registry has not been set. Please run registerProjectDirectory.solo to set the projectDirectory.' ]. | ||
^projectDirectory |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Core.package/GDKStonesRegistry.class/instance/stonesDirectory.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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
accessing | ||
stonesDirectory | ||
projectDirectory | ||
ifNil: [ | ||
self | ||
error: | ||
'The stonesDirectory for this registry has not been set. Please run registerStonesDirectory.solo to set the stonesDirectory.' ]. | ||
^stonesDirectory |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-Core.package/GDKStonesRegistry.class/instance/todeHome.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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
accessing | ||
todeHome | ||
todeHome | ||
ifNil: [ | ||
self | ||
error: | ||
'The todeHome for this registry has not been set. Please run registerTodeSharedDir.solo to set the todeHome.' ]. | ||
^todeHome |
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