From 2b5c58cf83d4c751443db99cb39dcc65b8605984 Mon Sep 17 00:00:00 2001 From: navewindre Date: Fri, 4 Jul 2025 09:12:36 +0200 Subject: fix --- slackware-bootstrap/step1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'slackware-bootstrap/step1') 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 -- cgit v1.2.3