From af5547f6e34b0e6705e2f4c86ea9159be6dada2a Mon Sep 17 00:00:00 2001 From: SWARVY Date: Mon, 29 Jul 2024 14:39:41 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20icons=20=EB=B9=8C=EB=93=9C=20=EC=8B=9C?= =?UTF-8?q?=20react=20=EB=94=94=EB=A0=89=ED=86=A0=EB=A6=AC=EA=B0=80=20?= =?UTF-8?q?=EC=97=86=EB=8A=94=20=EA=B2=BD=EC=9A=B0=EB=A5=BC=20=EC=97=90?= =?UTF-8?q?=EB=9F=AC=20=EB=B6=84=EA=B8=B0=EC=B2=98=EB=A6=AC=ED=95=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EB=8F=84=EB=A1=9D=20=EC=88=98=EC=A0=95=20?= =?UTF-8?q?(#ATR-588)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/icons/renew.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/icons/renew.bash b/packages/icons/renew.bash index fcc5a8cd..9c305e2e 100755 --- a/packages/icons/renew.bash +++ b/packages/icons/renew.bash @@ -14,7 +14,7 @@ for sub_dir in "${SUB_DIRS[@]}"; do SVG_DIR="$BASE_DIR/$sub_dir/svg" REACT_DIR="$BASE_DIR/$sub_dir/react" - if [ -d "$SVG_DIR" ] && [ -d "$REACT_DIR" ]; then + if [ -d "$SVG_DIR" ]; then svg_count=$(count_files "$SVG_DIR") react_count=$(count_files "$REACT_DIR") @@ -23,7 +23,7 @@ for sub_dir in "${SUB_DIRS[@]}"; do break fi else - echo "[🔮icons] Directory isn't found! current SVG_DIR=[$SVG_DIR] & REACT_DIR=[$REACT_DIR]" + echo "[🔮icons] SVG Directory isn't found!" exit 1 fi done