From aaa23d06fd14e9e0e7f2a1f80cddab0748e5acc7 Mon Sep 17 00:00:00 2001 From: Paul Wilde Date: Tue, 29 Aug 2023 11:26:42 +0100 Subject: [PATCH] switched to .local/bin --- compile_urrl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile_urrl.sh b/compile_urrl.sh index 1dafb8d..b65fe22 100755 --- a/compile_urrl.sh +++ b/compile_urrl.sh @@ -7,7 +7,7 @@ build () { f=$(echo "$dir" | sed 's/\.\///') nimble install -y if [[ $i == "install" ]]; then - sudo cp -v "$f" "/usr/local/bin/$f" + cp -v "$f" "$HOME/.local/bin/$f" fi cd ../ }