Overview
Comment: | Corrected typo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 091c38b14eae0cc70662bfe121aea1034148f7b7 |
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 222 indexfile="${appfsdir}/index" 223 223 else 224 224 indexfile="${appfsdir}/index.new" 225 225 fi 226 226 227 227 echo "${packagelistfile_hash},sha1" > "${indexfile}" 228 228 229 -if [ -x "$(which 'appfs-cert' 2>/dev/null)"]; then 229 +if [ -x "$(which 'appfs-cert' 2>/dev/null)" ]; then 230 230 appfs-cert sign-site "${indexfile}" "$@" 231 231 fi 232 232 233 233 if [ -z "$APPFS_SIGN_IN_PLACE" ]; then 234 234 mv "${indexfile}" "${appfsdir}/index" 235 235 fi 236 236 237 237 case "${mode}" in 238 238 file) 239 239 cd / 240 240 rm -rf "${workdir}" 241 241 ;; 242 242 esac