Skip to content

Commit

Permalink
Merge pull request #42 from derekhiggins/missing-space
Browse files Browse the repository at this point in the history
OCPBUGS-42621: Add missing space before square bracket
  • Loading branch information
openshift-merge-bot[bot] authored Oct 7, 2024
2 parents 953f5b0 + 47ab903 commit f08abe5
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 f08abe5

Please sign in to comment.