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
|
|
|
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
|