haiku/data/system/boot/InstallerFinishScript
Jérôme Duval ef0fc55562 use absolute path when launching makebootable as it seems unable to find its own path without it
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26901 a95241bf-73f2-0310-859d-f6bbb57e9c96
2008-08-09 16:15:04 +00:00

20 lines
232 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"
/bin/makebootable $mount