Skip to content

Commit

Permalink
Fixes #53: quillinfo written to CWD
Browse files Browse the repository at this point in the history
lib/quillinfo is now written to the project root, as it should be.
  • Loading branch information
wduquette committed Dec 22, 2014
1 parent 35411d7 commit 745ee6e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions lib/app_quill/project.tcl
Expand Up @@ -675,10 +675,14 @@ snit::type ::app_quill::project {
assert {[$type gotinfo]}

# FIRST, save the info to quillinfo.
set root [project root lib/quillinfo]
if {[$type gotapp]} {
writefile lib/quillinfo/pkgIndex.tcl [::qfile::quillinfoPkgIndex]
writefile lib/quillinfo/pkgModules.tcl [::qfile::quillinfoPkgModules]
writefile lib/quillinfo/quillinfo.tcl [::qfile::quillinfo.tcl]
writefile [project root lib/quillinfo/pkgIndex.tcl] \
[::qfile::quillinfoPkgIndex]
writefile [project root lib/quillinfo/pkgModules.tcl] \
[::qfile::quillinfoPkgModules]
writefile [project root lib/quillinfo/quillinfo.tcl] \
[::qfile::quillinfo.tcl]
}

# NEXT, update Tcl/Tk versions in apploader scripts.
Expand Down

0 comments on commit 745ee6e

Please sign in to comment.