From ddb6ea07c88713d4105b3ad09b6df7a016c7dffb Mon Sep 17 00:00:00 2001 From: Tomas Mirchev Date: Mon, 24 Feb 2025 16:14:28 +0000 Subject: [PATCH] fix setup macos --- setups/macos.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setups/macos.sh b/setups/macos.sh index 06edc81..dea201b 100755 --- a/setups/macos.sh +++ b/setups/macos.sh @@ -30,20 +30,20 @@ fi echo "" echo "Installing brew packages..." -/bin/bash ../scripts/macos-brew_restore.sh +/bin/bash ./scripts/macos-brew_restore.sh echo "" echo "Linking configs..." -python3 ../manage.py link macos --force +python3 ./manage.py link macos --force echo "" echo "Changing hostname..." -/bin/bash ../scripts/macos-change_hostname.sh "$NEW_HOSTNAME" +/bin/bash ./scripts/macos-change_hostname.sh "$NEW_HOSTNAME" echo "" echo "Creating internal SSH keys..." -/bin/bash ../scripts/setup_ssh_keys.sh --comment "${USER}@${NEW_HOSTNAME}" --filename "internal" -/bin/bash ../scripts/setup_ssh_keys.sh --comment "${USER}@${NEW_HOSTNAME}" --filename "git" +/bin/bash ./scripts/setup_ssh_keys.sh --comment "${USER}@${NEW_HOSTNAME}" --filename "internal" +/bin/bash ./scripts/setup_ssh_keys.sh --comment "${USER}@${NEW_HOSTNAME}" --filename "git" echo "" echo "Setup complete. Follow the next steps to finalize your environment:"