Browse Source

fix erroneous test condition in last

master
Julian Noble 1 week ago
parent
commit
7958c06c1b
  1. 4
      src/make.tcl
  2. 4
      src/project_layouts/custom/_project/punk.basic/src/make.tcl
  3. 4
      src/project_layouts/custom/_project/punk.project-0.1/src/make.tcl
  4. 4
      src/project_layouts/custom/_project/punk.shell-0.1/src/make.tcl

4
src/make.tcl

@ -2636,7 +2636,7 @@ foreach runtime [dict keys $runtime_vfs_map] {
}
#invoke can fail if runtime not an executable file for the current platform
if {![file type $rtfolder/$runtime] eq "directory"} {
if {[file type $rtfolder/$runtime] ne "directory"} {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} {
@ -2696,7 +2696,7 @@ foreach runtimefile $runtimes {
}
#----------------------
if {![file type $rtfolder/$runtimefile] eq "directory"} {
if {[file type $rtfolder/$runtimefile] ne "directory"} {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} {

4
src/project_layouts/custom/_project/punk.basic/src/make.tcl

@ -2636,7 +2636,7 @@ foreach runtime [dict keys $runtime_vfs_map] {
}
#invoke can fail if runtime not an executable file for the current platform
if {![file type $rtfolder/$runtime] eq "directory"} {
if {[file type $rtfolder/$runtime] ne "directory"} {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} {
@ -2696,7 +2696,7 @@ foreach runtimefile $runtimes {
}
#----------------------
if {![file type $rtfolder/$runtimefile] eq "directory"} {
if {[file type $rtfolder/$runtimefile] ne "directory"} {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} {

4
src/project_layouts/custom/_project/punk.project-0.1/src/make.tcl

@ -2636,7 +2636,7 @@ foreach runtime [dict keys $runtime_vfs_map] {
}
#invoke can fail if runtime not an executable file for the current platform
if {![file type $rtfolder/$runtime] eq "directory"} {
if {[file type $rtfolder/$runtime] ne "directory"} {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} {
@ -2696,7 +2696,7 @@ foreach runtimefile $runtimes {
}
#----------------------
if {![file type $rtfolder/$runtimefile] eq "directory"} {
if {[file type $rtfolder/$runtimefile] ne "directory"} {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} {

4
src/project_layouts/custom/_project/punk.shell-0.1/src/make.tcl

@ -2636,7 +2636,7 @@ foreach runtime [dict keys $runtime_vfs_map] {
}
#invoke can fail if runtime not an executable file for the current platform
if {![file type $rtfolder/$runtime] eq "directory"} {
if {[file type $rtfolder/$runtime] ne "directory"} {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} {
@ -2696,7 +2696,7 @@ foreach runtimefile $runtimes {
}
#----------------------
if {![file type $rtfolder/$runtimefile] eq "directory"} {
if {[file type $rtfolder/$runtimefile] ne "directory"} {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} {

Loading…
Cancel
Save