Skip to content

Commit 022d1bd

Browse files
committed
chore: fix syntax error in apply_versions.sh
1 parent a3950aa commit 022d1bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

generation/apply_versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if [[ "$column_name" == "released" ]]; then
2525
column_index=2
2626
elif [[ "$column_name" == "current" ]]; then
2727
column_index=3
28-
elif "$column_name" != "current" ]]; then
28+
elif [[ "$column_name" != "current" ]]; then
2929
echo "Error: column_name must be either 'released' or 'current'"
3030
exit 1
3131
fi

0 commit comments

Comments
 (0)