Overview
Comment: | Updated to try harder to set PATH |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | b816922ddf489750ada6308a88bd93b38b7f1a85 |
User & Date: | rkeene on 2014-11-17 21:25:02 |
Other Links: | manifest | tags |
Context
2014-11-17
| ||
21:25 | Updated to try to send a SIGHUP to AppFSd after updating cache check-in: e2d1bd2959 user: rkeene tags: trunk | |
21:25 | Updated to try harder to set PATH check-in: b816922ddf user: rkeene tags: trunk | |
21:18 | Corrected typo check-in: 091c38b14e user: rkeene tags: trunk | |
Changes
Modified appfs-mkfs from [2e9f54d33a] to [5f425f1329].
1 2 3 4 5 6 7 8 9 10 |
#! /usr/bin/env bash PATH="${PATH}:$(dirname "$(which "$0")")" if [ "$1" == '--cpio' ]; then shift mode='file' pkgfile="$1" |
| |
1 2 3 4 5 6 7 8 9 10 |
#! /usr/bin/env bash PATH="${PATH}:$(cd "$(dirname "$(which "$0")")" && pwd)" if [ "$1" == '--cpio' ]; then shift mode='file' pkgfile="$1" |