-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #260: add two new tODE scripts that synchronize the filetree an…
…d tonel script packages ... to be used during tODE-based development ... update the stone creation scripts to make sure that the tODE scripts are mounted into the tODE dev environment [ci skip]
- Loading branch information
1 parent
9488274
commit 738e4ba
Showing
4 changed files
with
69 additions
and
0 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
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
27 changes: 27 additions & 0 deletions
27
shared/repos/GsDevKit_launcher/tode/copyTonelScriptsToFiletree.ston
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,27 @@ | ||
TDScriptLeafNode{#name:'copyTonelScriptsToFiletree',#contents:'[ :topez :objIn :tokens :command :commandNode | | ||
| opts args | | ||
\"for help: ./copyTonelScriptsToFiletree -h\" | ||
command | ||
getOptsMixedLongShort: {#(\'help\' $h #\'none\')} | ||
optionsAndArguments: [ :options :operands | | ||
opts := options. | ||
args := operands ]. | ||
opts | ||
at: \'help\' | ||
ifAbsent: [ GdkL_CopyScriptClasses copyTonelToFiletree ] | ||
ifPresent: [ :ignored | | ||
TDManPage | ||
viewManPage: | ||
\'NAME | ||
copyTonelScriptsToFiletree - copyTonelScriptsToFiletree script utility template | ||
SYNOPSIS | ||
copyTonelScriptsToFiletree [-h|--help] | ||
DESCRIPTION | ||
Copy the tonel script classes to the filetree package. | ||
|
||
To be used when manual edits have been made to the tonel scripts. | ||
EXAMPLES | ||
./copyTonelScriptsToFiletree --help | ||
./copyTonelScriptsToFiletree -h | ||
\' | ||
topez: topez ] ]',#creationTime:DateAndTime['2019-10-24T10:18:08.695271015167236-07:00'],#modificationTime:DateAndTime['2019-10-24T10:25:39.14751696586609-07:00']} |
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,37 @@ | ||
TDScriptLeafNode{#name:'saveScripts',#contents:'[ :topez :objIn :tokens :command :commandNode | | ||
| opts args | | ||
\"for help: ./saveScripts -h\" | ||
command | ||
getOptsMixedLongShort: {#(\'help\' $h #\'none\')} | ||
optionsAndArguments: [ :options :operands | | ||
opts := options. | ||
args := operands ]. | ||
opts | ||
at: \'help\' | ||
ifAbsent: [ | ||
\" | ||
\t\tSave the filetree scripts package, then copy the script classes to the tonel package. | ||
\t\tSince we are writing to a metadataless repository, the version name commit message are | ||
\t\tnot written to disk. | ||
\" | ||
topez | ||
evaluateCommandString: | ||
\'mc save gsdevkit_launcher-Scripts gsdevkit_launcher-Scripts-xxx.0 filetree://$GS_HOME/shared/repos/GsDevKit_launcher/rowan/src `dummy message`\'. | ||
GdkL_CopyScriptClasses copyFileTreeToTonel ] | ||
ifPresent: [ :ignored | | ||
TDManPage | ||
viewManPage: | ||
\'NAME | ||
saveScripts - saveScripts script utility template | ||
SYNOPSIS | ||
saveScripts [-h|--help] | ||
DESCRIPTION | ||
Save the gsdevkit_launcher-Scripts package to the filetree script package and | ||
copy the filetree classes to the tonel script package. | ||
|
||
To be used after making in image changes to the script classes. | ||
EXAMPLES | ||
./saveScripts --help | ||
./saveScripts -h | ||
\' | ||
topez: topez ] ]',#creationTime:DateAndTime['2019-10-24T10:08:21.52523899078369-07:00'],#modificationTime:DateAndTime['2019-10-24T10:28:21.8267650604248-07:00']} |