Differences From Artifact [8dbe3ef0bd]:
- Executable file
tk/build.sh
— part of check-in
[d2a98c553c]
at
2011-11-05 18:49:02
on branch trunk
— KitCreator 0.6.1
Updated to download Tk by tag first, if possible, then by date if not (user: rkeene, size: 6945) [annotate] [blame] [check-ins using]
To Artifact [8f91e493d3]:
- Executable file tk/build.sh — part of check-in [4e8d261d38] at 2012-02-01 07:56:32 on branch trunk — Updated to call "/usr/bin/env" to locate "bash" in case it is not in "/bin" (user: rkeene, size: 6953) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 |
#! /bin/bash
if [ ! -f 'build.sh' ]; then
echo 'ERROR: This script must be run from the directory it is in' >&2
exit 1
fi
if [ -z "${TCLVERS}" ]; then
|
| |
1 2 3 4 5 6 7 8 |
#! /usr/bin/env bash
if [ ! -f 'build.sh' ]; then
echo 'ERROR: This script must be run from the directory it is in' >&2
exit 1
fi
if [ -z "${TCLVERS}" ]; then
|