summaryrefslogtreecommitdiffstats
path: root/tools/addVerToFile.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/addVerToFile.tcl')
-rwxr-xr-xtools/addVerToFile.tcl9
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/addVerToFile.tcl b/tools/addVerToFile.tcl
deleted file mode 100755
index bfc39e2..0000000
--- a/tools/addVerToFile.tcl
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env tclsh
-if {$argc < 1} {
- error "need a filename argument"
-}
-lassign $argv filename
-set f [open $filename a]
-puts $f "TCL_VERSION=[info tclversion]"
-puts $f "TCL_PATCHLEVEL=[info patchlevel]"
-close $f