Overview
| Comment: | Corrected typo |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
091c38b14eae0cc70662bfe121aea103 |
| User & Date: | rkeene on 2014-11-17 21:18:41 |
| Other Links: | manifest | tags |
Context
|
2014-11-17
| ||
| 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 | |
| 21:11 | Updated to call appfs-cert to sign the site if it is available check-in: 87b144f5c9 user: rkeene tags: trunk | |
Changes
Modified appfs-mkfs from [e7a75a276a] to [2e9f54d33a].
| ︙ | ︙ | |||
222 223 224 225 226 227 228 |
indexfile="${appfsdir}/index"
else
indexfile="${appfsdir}/index.new"
fi
echo "${packagelistfile_hash},sha1" > "${indexfile}"
| | | 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
indexfile="${appfsdir}/index"
else
indexfile="${appfsdir}/index.new"
fi
echo "${packagelistfile_hash},sha1" > "${indexfile}"
if [ -x "$(which 'appfs-cert' 2>/dev/null)" ]; then
appfs-cert sign-site "${indexfile}" "$@"
fi
if [ -z "$APPFS_SIGN_IN_PLACE" ]; then
mv "${indexfile}" "${appfsdir}/index"
fi
|
| ︙ | ︙ |