Diff

Differences From Artifact [e8193d8a25]:

To Artifact [08a58cef96]:


1
2
3
4
5
6
7
8








9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17








+
+
+
+
+
+
+
+

#! /usr/bin/env tclsh

set outputname [lindex $argv 0]

if {[info nameofexecutable] == $outputname} {
	exit 0
}

# Under Wine, the drive letter is added
if {[info nameofexecutable] == "Z:$outputname"} {
	exit 0
}

puts "Info NameOfExe: [info nameofexecutable]"
puts "Expected:       $outputname"

exit 1