From 7958c06c1b3825b485c0d5ffbf6c9e698c4e6680 Mon Sep 17 00:00:00 2001 From: Julian Noble Date: Mon, 23 Feb 2026 01:03:28 +1100 Subject: [PATCH] fix erroneous test condition in last --- src/make.tcl | 4 ++-- src/project_layouts/custom/_project/punk.basic/src/make.tcl | 4 ++-- .../custom/_project/punk.project-0.1/src/make.tcl | 4 ++-- .../custom/_project/punk.shell-0.1/src/make.tcl | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/make.tcl b/src/make.tcl index 6c94a68c..7a4fddc3 100644 --- a/src/make.tcl +++ b/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"} { diff --git a/src/project_layouts/custom/_project/punk.basic/src/make.tcl b/src/project_layouts/custom/_project/punk.basic/src/make.tcl index 6c94a68c..7a4fddc3 100644 --- a/src/project_layouts/custom/_project/punk.basic/src/make.tcl +++ b/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"} { diff --git a/src/project_layouts/custom/_project/punk.project-0.1/src/make.tcl b/src/project_layouts/custom/_project/punk.project-0.1/src/make.tcl index 6c94a68c..7a4fddc3 100644 --- a/src/project_layouts/custom/_project/punk.project-0.1/src/make.tcl +++ b/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"} { diff --git a/src/project_layouts/custom/_project/punk.shell-0.1/src/make.tcl b/src/project_layouts/custom/_project/punk.shell-0.1/src/make.tcl index 6c94a68c..7a4fddc3 100644 --- a/src/project_layouts/custom/_project/punk.shell-0.1/src/make.tcl +++ b/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"} {