tcl-testbench[x].sh: Use bash within shebang

These scripts using non Posix shell extensions which are provided by bash and
require the bash as shell to be fully functional.
This commit is contained in:
Carsten Schoenert 2022-01-01 12:58:53 +01:00 committed by Holger Vogt
parent 486dd587d0
commit e373ca0e2f
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# -*- mode: tcl -*- \
exec wish -f "$0" ${1+"$@"}

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# -*- mode: tcl -*- \
exec wish -f "$0" ${1+"$@"}