Skip to content

Commit

Permalink
fix small oversight with doas fix
Browse files Browse the repository at this point in the history
  • Loading branch information
simen64 committed Sep 30, 2024
1 parent a42e485 commit 8b1cb08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release_files/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ SUDO=""

if command -v sudo > /dev/null && [ "$(id -u)" -ne 0 ]; then
SUDO="sudo"
elif command -v sudo > /dev/null && [ "$(id -u)" -ne 0 ]; then
elif command -v doas > /dev/null && [ "$(id -u)" -ne 0 ]; then
SUDO="doas"
fi

Expand Down

0 comments on commit 8b1cb08

Please sign in to comment.