summaryrefslogtreecommitdiff
path: root/slackware-bootstrap/step1
diff options
context:
space:
mode:
authornavewindre <boneyaard@gmail.com>2025-07-04 09:12:36 +0200
committernavewindre <boneyaard@gmail.com>2025-07-04 09:12:36 +0200
commit2b5c58cf83d4c751443db99cb39dcc65b8605984 (patch)
treeffc8cee41e244240d66385b466e4a1f285e81386 /slackware-bootstrap/step1
parent94291899afc6c7a079889beed2b9dbc79588a585 (diff)
fix
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