From 174d23014e61aadded4d4552fd047d2c0c29cc66 Mon Sep 17 00:00:00 2001 From: germedeb Date: Fri, 2 Sep 2022 21:20:05 -0300 Subject: [PATCH] updated build script: solved a bug the autoinstall was trying to copy the content to a non existent folder now it copies the folder itself, so don't matter if the folder exist or not --- tasks/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/build.sh b/tasks/build.sh index c0de6d0..93bb844 100755 --- a/tasks/build.sh +++ b/tasks/build.sh @@ -153,7 +153,8 @@ else fi case "$@" in *--autoinstall*|*-i*) printf "${info_color}Performing an Update/Installation of aleta${reset_colors}\\n" - cp -r ./_build/aleta/* ~/.icons/tmpaleta/ + + cp -r ./_build/aleta ~/.icons/tmpaleta rm -rf ~/.icons/aleta mv ~/.icons/tmpaleta ~/.icons/aleta printf "${info_color}Updating gtk icon cache...${reset_colors}\\n"