haiku/data/system/boot/InstallerFinishScript
Jérôme Duval a1e7587018 makebootable is now usable without absolute path
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27014 a95241bf-73f2-0310-859d-f6bbb57e9c96
2008-08-17 22:34:56 +00:00

20 lines
227 B
Bash

#!/bin/sh
## The installer finish script.
mount=$1
if [ -z $mount ]; then
echo "Usage: $0 volume"
exit 1
fi
if [ ! -d $mount ]; then
echo "$mount isn't mounted"
exit 1
fi
mkdir -p "$mount/var/tmp"
makebootable $mount