Skip to content

Commit

Permalink
Use bashism for encfs matching
Browse files Browse the repository at this point in the history
Co-authored-by: John T. Wodder II <[email protected]>
  • Loading branch information
yarikoptic and jwodder authored Jan 6, 2025
1 parent 5befcac commit 0284dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/template/build-{{ostype}}.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ jobs:
sudo exportfs -a
sudo mount -t nfs localhost:/tmp/nfsmount_ /tmp/nfsmount
fi
if echo "${{ matrix.flavor }}" | grep -q "encfs" ; then
if [[ "${{ matrix.flavor }}" == *encfs* ]] ; then
mkdir /tmp/encfsmount_ /tmp/encfsmount
sudo apt-get install -y encfs
encfs --standard --extpass="echo 123" /tmp/encfsmount_ /tmp/encfsmount
Expand Down

0 comments on commit 0284dbc

Please sign in to comment.