Skip to content

Commit

Permalink
ext: Use _ to please shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
cdown committed Jul 31, 2024
1 parent 747cb8f commit 7272a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/ext
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if is-wsl; then
fi

# Try to find the disk every second for up to 30 seconds
for i in {1..30}; do
for _ in {1..30}; do
blkid_output=$(sudo blkid)
part=$(awk -F: '/PARTLABEL="ext-.*"/ { print $1 }' <<< "$blkid_output")
label=$(sed -n 's/.*PARTLABEL="\([^"]\+\)".*/\1/p' <<< "$blkid_output")
Expand Down

0 comments on commit 7272a83

Please sign in to comment.