Skip to content

Commit

Permalink
bugfixes for exportRowanPackagesAsTopaz.solo and exportRowanProjectAs…
Browse files Browse the repository at this point in the history
…Topaz.solo
  • Loading branch information
dalehenrich committed Oct 24, 2024
1 parent 3815202 commit 74b8d4c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/exportRowanPackagesAsTopaz.solo
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ doit
self positionalArgs size < 1
ifTrue: [ self error: 'Expected at least one package name.' ].
packageNamesMap := Dictionary new.
packageNamesMap at: topazFilename put: self positionalArgs asSet.
topazFilename asFileReference writeStreamDo: [:stream | stream truncate ]. "make sure the file is truncated -- Rowan issue fixed in masterV3.3"
packageNamesMap at: topazFilename asFileReference base put: self positionalArgs asSet.
(topazFilename asFileReference) writeStreamDo: [:stream | stream truncate ]. "make sure the file is truncated -- Rowan issue fixed in masterV3.2"
(projectSet projectNamed: projectName)
exportTopazFormatTo: topazFilename
logClassCreation: false
Expand Down
2 changes: 1 addition & 1 deletion bin/exportRowanProjectAsTopaz.solo
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ doit
projectsHome: self projectsHome;
yourself.
projectSet := (loadSpec resolve: loadSpec customConditionalAttributes, Rowan platformConditionalAttributes) read.
topazFilename asFileReference writeStreamDo: [:stream | stream truncate ]. "make sure the file is truncated -- Rowan issue fixed in masterV3.3"
topazFilename asFileReference writeStreamDo: [:stream | stream truncate ]. "make sure the file is truncated -- Rowan issue fixed in masterV3.2"
(projectSet projectNamed: projectName)
exportTopazFormatTo: topazFilename
logClassCreation: false
Expand Down

0 comments on commit 74b8d4c

Please sign in to comment.