Skip to content

Commit

Permalink
Add missing space before square bracket
Browse files Browse the repository at this point in the history
Fix for
/bin/copy-iso: line 29: [: missing `]'
  • Loading branch information
derekhiggins committed Sep 30, 2024
1 parent 953f5b0 commit 47ab903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/copy-iso
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ copy_if_needed() {
KERNEL_ARGS+="${IP_OPTIONS} "
fi
if [ -f /proc/sys/crypto/fips_enabled ]; then
if [ "$(cat /proc/sys/crypto/fips_enabled)" = "1"]; then
if [ "$(cat /proc/sys/crypto/fips_enabled)" = "1" ]; then
echo "Adding kernel argument fips=1" >&2
KERNEL_ARGS+="fips=1 "
fi
Expand Down

0 comments on commit 47ab903

Please sign in to comment.