forked from germedeb/aleta-postre
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
This commit is contained in:
parent
0fae205734
commit
174d23014e
|
@ -153,7 +153,8 @@ else
|
||||||
fi
|
fi
|
||||||
case "$@" in *--autoinstall*|*-i*)
|
case "$@" in *--autoinstall*|*-i*)
|
||||||
printf "${info_color}Performing an Update/Installation of aleta${reset_colors}\\n"
|
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
|
rm -rf ~/.icons/aleta
|
||||||
mv ~/.icons/tmpaleta ~/.icons/aleta
|
mv ~/.icons/tmpaleta ~/.icons/aleta
|
||||||
printf "${info_color}Updating gtk icon cache...${reset_colors}\\n"
|
printf "${info_color}Updating gtk icon cache...${reset_colors}\\n"
|
||||||
|
|
Loading…
Reference in New Issue