Skip to content

Commit

Permalink
fix example shellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
DannyBen committed Dec 7, 2023
1 parent b062c93 commit 9fb6bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bashly/views/flag/case_arg.gtx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if repeatable
> if [[ -z ${args['{{ name }}']+x} ]]; then
> args['{{ name }}']="\"$2\""
if unique
> elif [[ ! "${args['{{ name }}']}" =~ "\"$2\"" ]]; then
> elif [[ ! "${args['{{ name }}']}" =~ \"$2\" ]]; then
else
> else
end
Expand Down

0 comments on commit 9fb6bcf

Please sign in to comment.