Skip to content

Commit

Permalink
Add missing PASSWORDLESS check.
Browse files Browse the repository at this point in the history
  • Loading branch information
actapia committed Nov 24, 2024
1 parent 7164fbb commit e7d26cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_install/macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ rm /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress

set -e
git clone -b "$branch" --recurse-submodules https://github.com/actapia/rna_clique
if which sudo && ! sudo -n -v; then
if [ "$PASSWORDLESS" -ne 1 ] && which sudo && ! sudo -n -v; then
echo "$password" | sudo -S -v
fi
CI=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Expand Down

0 comments on commit e7d26cf

Please sign in to comment.