summaryrefslogtreecommitdiff
path: root/slackware-bootstrap/step1
diff options
context:
space:
mode:
Diffstat (limited to 'slackware-bootstrap/step1')
-rwxr-xr-xslackware-bootstrap/step18
1 files changed, 4 insertions, 4 deletions
diff --git a/slackware-bootstrap/step1 b/slackware-bootstrap/step1
index cfb5e80..2c884e8 100755
--- a/slackware-bootstrap/step1
+++ b/slackware-bootstrap/step1
@@ -3,20 +3,20 @@ basedir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
cp $basedir/post-functions.conf /etc/slackpkg/post-functions.conf
-if [[ -f "~/.step1-done" ]]; then
+if [[ -f "$HOME/.step1-done" ]]; then
sh $basedir/step2
exit
fi
-if [[ ! -f "~/.stable-done" ]]; then
+if [[ ! -f "$HOME/.stable-done" ]]; then
sh $basedir/update-stable
fi
-if [[ ! -f "~/.current-done" ]]; then
+if [[ ! -f "$HOME/.current-done" ]]; then
sh $basedir/update-current
fi
-if [[ ! -f "~/.purge-done" ]]; then
+if [[ ! -f "$HOME/.purge-done" ]]; then
sh $basedir/package-purge
fi