Skip to content

Commit

Permalink
Adds items as list instead of a single string
Browse files Browse the repository at this point in the history
  • Loading branch information
Drazzilb08 committed Feb 18, 2024
1 parent 11e84c8 commit a923909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/nohl_bash.sh
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ handle_options() {
while getopts ":s:i:e:w:n:h" opt; do
case $opt in
s) source_dir="$OPTARG" ;;
i) include+=("$OPTARG") ;;
i) IFS=' ' read -ra include <<< "$OPTARG" ;;
e) exclude+=("$OPTARG") ;;
w) webhook="$OPTARG" ;;
n) bot_name="$OPTARG" ;;
Expand Down

0 comments on commit a923909

Please sign in to comment.