Skip to content

Commit 162c644

Browse files
committed
Issue #261: deployed topaz solo image cannot have filetree Scripts loaded as DataCurator, but for tODE development env we do want Scripts available for editing in image ... adjust deploy and tode bootstrap scripts accordingly [ci skip]
1 parent 9077c09 commit 162c644

File tree

5 files changed

+24
-3
lines changed

5 files changed

+24
-3
lines changed

shared/repos/GsDevKit_launcher/bootstrapping/gemstone/bin/bootstrap_install.tpz

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
url := 'file:$ROWAN_PROJECTS_HOME/GsDevKit_launcher/rowan/specs/gsdevkit_launcher.ston'.
3232
projectSetDefinition := (RwComponentProjectDefinition newForUrl: url)
3333
projectHome: '$ROWAN_PROJECTS_HOME';
34-
packageFormat: 'filetree';
3534
read.
3635
projectSetDefinition load
3736
%
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/usr/local/bin/smalltalk/gemstone/topaz
2+
3+
#
4+
# install scripts in tODE for development
5+
#
6+
7+
set u DataCurator p swordfish
8+
login
9+
10+
run
11+
Rowan projectTools browser addRowanSymbolDictionariesToPersistentSymbolList.
12+
Metacello new
13+
baseline: 'GsDevKit_launcher';
14+
repository: 'filetree://$GS_HOME/shared/repos/GsDevKit_launcher/rowan/src';
15+
load: 'Scripts'
16+
%
17+
commit
18+
19+
errorCount
20+
exitifnoerror
21+

shared/repos/GsDevKit_launcher/bootstrapping/gemstone/gsdevkit_home/newBuild_SystemUser_gsdevkit_launcher_deployer

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ cp -f snapshots/extent0.gsdevkit_launcher.dbf $GS_HOME/shared/gemstone/snapshots
1818

1919
startStone $GEMSTONE_NAME # in 3.5.1 snapshot up above
2020

21+
$ROWAN_PROJECTS_HOME/GsDevKit_launcher/bootstrapping/gemstone/bin/bootstrap_install_scripts.tpz $GEMSTONE_NAME -lq
2122

shared/repos/GsDevKit_launcher/bootstrapping/gemstone/gsdevkit_home/newBuild_SystemUser_gsdevkit_launcher_tode

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ rm -rf *.log *.out
66
newExtent -t -s snapshots/extent0.tode.dbf $GEMSTONE_NAME
77

88
$ROWAN_PROJECTS_HOME/GsDevKit_launcher/bootstrapping/gemstone/bin/bootstrap_install_tode.tpz $GEMSTONE_NAME -lq
9-
9+
$ROWAN_PROJECTS_HOME/GsDevKit_launcher/bootstrapping/gemstone/bin/bootstrap_install_scripts.tpz $GEMSTONE_NAME -lq

shared/repos/GsDevKit_launcher/rowan/src/BaselineOfGsDevKit_launcher.package/BaselineOfGsDevKit_launcher.class/instance/baseline..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ baseline: spec
1212
with: [ spec requires: 'gsdevkit_launcher-Core' ];
1313
yourself.
1414
spec
15-
group: 'default' with: #('Core' 'Scripts');
15+
group: 'default' with: #('Core');
1616
group: 'Core' with: #('gsdevkit_launcher-Program-Rowan');
1717
group: 'Scripts' with: #('gsdevkit_launcher-Scripts');
1818
group: 'Tests' with: #();

0 commit comments

Comments
 (0)