Skip to content

Commit

Permalink
Fix shellcheck (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
picodotdev committed Apr 4, 2024
1 parent 73cb8e9 commit 254839c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
2 changes: 1 addition & 1 deletion alis-commons.sh
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ function partition_options() {
PARTITION_OPTIONS_BOOT="defaults"
PARTITION_OPTIONS="defaults"

if [ "$$BIOS_TYPE" == "uefi" ]; then
if [ "$BIOS_TYPE" == "uefi" ]; then
PARTITION_OPTIONS_BOOT="$PARTITION_OPTIONS_BOOT,uid=0,gid=0,fmask=0077,dmask=0077"
fi
if [ "$DEVICE_TRIM" == "true" ]; then
Expand Down

0 comments on commit 254839c

Please sign in to comment.