Skip to content

Commit

Permalink
Fix variables expansion
Browse files Browse the repository at this point in the history
Signed-off-by: Vitalii Koshura <[email protected]>
  • Loading branch information
AenBleidd committed Feb 14, 2024
1 parent 1801a7c commit c2aa56f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,8 @@ jobs:
fi
fi
if [ -n "'$SUDO_USER'" ]; then
if ! getent group ${BOINCGROUP} | grep -q '$SUDO_USER'; then
usermod -a -G ${BOINCGROUP} '$SUDO_USER'
if ! getent group ${BOINCGROUP} | grep -q "'$SUDO_USER'"; then
usermod -a -G ${BOINCGROUP} "'$SUDO_USER'"
fi
fi
Expand Down

0 comments on commit c2aa56f

Please sign in to comment.