Skip to content

Commit 30dc23f

Browse files
committed
CI scripts: Added tclconfig search logic
1 parent 4563ca7 commit 30dc23f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.ci/build_and_test_world

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/bin/sh
2-
2+
if [ -z "$TCLCONFIG" ]; then
3+
[ -x /usr/lib/tcl8.5/tclConfig.sh ] && TCLCONFIG=/usr/lib/tcl8.5
4+
[ -x /usr/lib/tcl8.6/tclConfig.sh ] && TCLCONFIG=/usr/lib/tcl8.6
5+
fi
6+
[ -n "$TCLCONFIG" ] && export TCLCONFIG
7+
echo TCLCONFIG=${TCLCONFIG}
38
#
49
# script which exececutes all the build stages. If script executed with
510
# no arguments and something fails, every bit of logs, stack traces and

0 commit comments

Comments
 (0)