Skip to content

Commit

Permalink
dont use bash syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
prince-chrismc committed Jan 11, 2024
1 parent 6ac6eca commit a680f2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/install/wolfssl/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ autoreconf -fiv
make

# Depending if we run in on a GitHub Actions or from within a Docker image we have different permissions
if [[ $EUID > 0 ]]; then
if [ "$(id -u)" -ne 0 ]; then
# If we are not root then we need to sudo
sudo make install
else
Expand Down

0 comments on commit a680f2b

Please sign in to comment.