diff options
-rwxr-xr-x | assets/images/polyguin.sh | 2 | ||||
-rwxr-xr-x | publish | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/assets/images/polyguin.sh b/assets/images/polyguin.sh index 7497f8c..dc974f5 100755 --- a/assets/images/polyguin.sh +++ b/assets/images/polyguin.sh @@ -175,7 +175,7 @@ done # r # 32x32 is GitLab # Website uses native SVG # -magick convert -background none -gravity center -resize 32x32 -extent 32x32 polyguin_color.svg icons/gen_polyguin_color_favicon.ico; +magick convert -background none -gravity center -resize 32x32 -extent 32x32 gen_polyguin_color.svg icons/gen_polyguin_color_favicon.ico; chown 1000:1000 icons/gen_polyguin_color_favicon.ico; #--------------------------------------------------------------- @@ -2,7 +2,7 @@ HERE=$(dirname $(readlink -f ${0}))/src; -HTML=html; +KEEP=html; # output directory TEMP=$(mktemp -d); chmod 755 ${TEMP}; @@ -13,7 +13,7 @@ SASS=0; LOGO=0; HTML=0; for arg; do - case "${ARG}" in + case "${arg}" in sass) SASS=1; ;; logo) LOGO=1; ;; html) HTML=1; ;; @@ -88,6 +88,6 @@ cp ${HERE}/robots.txt ${TEMP}; # publish # rm -fr ${HTML}; -mv ${TEMP} ${HTML}; +mv ${TEMP} ${KEEP}; fi # HTML |