We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99534db commit d046f43Copy full SHA for d046f43
1 file changed
build.tcl
@@ -192,3 +192,9 @@ if {$modifiedExe != "" && [file isfile $modifiedExe]} {
192
} else {
193
file copy [file join $BUILD_WINDOWS_DIR "application.exe"] [file join $TARGET_DIR "$PROJECT-$VERSION-xp.exe"]
194
}
195
+
196
+# On Windows systems there is an unusable bat file written into the target folder.
197
+# To avoid any confusions we're deleting this file.
198
+foreach f [glob -nocomplain -directory $TARGET_DIR -type f "*.bat"] {
199
+ file delete $f
200
+}
0 commit comments