Skip to content

Commit

Permalink
fixed issue with bash -z conditional (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
kapsakcj authored Aug 17, 2023
1 parent e018118 commit 3dfe9ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/utilities/task_summarize_data.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ task summarize_data {
fi

# indicate if a different id_column should be used than the default
if [[ -z ~{id_column_name} ]]; then
if [[ -z "~{id_column_name}" ]]; then
export default_column="true"
else
export default_column="false"
Expand Down

0 comments on commit 3dfe9ec

Please sign in to comment.