From 6718c5b8ba55426ee9982502d0420d320f73f415 Mon Sep 17 00:00:00 2001 From: DevGnome Date: Thu, 7 Nov 2024 09:48:49 -0500 Subject: [PATCH] also need the install to add it to bin. --- one-time-stuff/basic-settings.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/one-time-stuff/basic-settings.sh b/one-time-stuff/basic-settings.sh index 326b1e0..13289a8 100755 --- a/one-time-stuff/basic-settings.sh +++ b/one-time-stuff/basic-settings.sh @@ -26,6 +26,11 @@ if [[ ! -f "$HOME/bin/docker-ps.sh" ]]; then ln -s "$script_dir/docker-ps.sh" "$HOME/bin/docker-ps.sh" fi +if [[ ! -f "$HOME/bin/delay.sh" ]]; then + echo 'installing delay.sh' + ln -s "$script_dir/delay.sh" "$HOME/bin/delay.sh" +fi + if [[ ! -f "$HOME/bin/enumerate.sh" ]]; then echo 'installing enumerate.sh' ln -s "$script_dir/enumerate.sh" "$HOME/bin/enumerate.sh"