From c7911dc0a7039f21581ade55312734757093a027 Mon Sep 17 00:00:00 2001 From: ksyasuda Date: Sun, 12 Jun 2022 21:33:12 -0700 Subject: [PATCH] squash some bugs --- aniwrapper | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aniwrapper b/aniwrapper index 5c4da03..1ef6951 100755 --- a/aniwrapper +++ b/aniwrapper @@ -276,13 +276,13 @@ check_flags() { if [ ! -d "$dl_dir" ]; then mkdir -p "$dl_dir" || die "Error creating directory: $dl_dir" fi - args+=(-d "$dl_dir") + args+=(-d"$dl_dir") fi if ((IS_DOWNLOAD)); then args+=(-d) fi if ((IS_PLAY_FROM_FILE)); then - args+=(-f "$play_path") + args+=(-f"$play_path") fi if ((IS_ALTERNATE_PLAYER)); then args+=(-p "$PLAYER_FN") @@ -294,9 +294,9 @@ check_flags() { args+=(-S) fi if ((IS_CUSTOM_THEME)); then - args+=(-T "$CFG_FILE") + args+=(-T"$CFG_FILE") elif ((!IS_CUSTOM_THEME)); then - args+=(-t "$theme") + args+=(-t"$theme") fi if ((IS_VERBOSE)); then args+=(-v)