From a712bbdd837e7c5f53569f8f62119e1a47a9bb96 Mon Sep 17 00:00:00 2001 From: germedeb Date: Thu, 13 Jan 2022 20:14:00 -0300 Subject: [PATCH] deleted build-two script, renamed build-one to build --- tasks/build-two.sh | 51 -------------------------------- tasks/{build-one.sh => build.sh} | 0 2 files changed, 51 deletions(-) delete mode 100755 tasks/build-two.sh rename tasks/{build-one.sh => build.sh} (100%) diff --git a/tasks/build-two.sh b/tasks/build-two.sh deleted file mode 100755 index f2152bf..0000000 --- a/tasks/build-two.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/bash - -info_color="\e[1;34m" # tasks color -comple_color="\e[1;32m" # Ok color -reset_colors="\e[0m" # this resets the coloring - -printf "${info_color}this scripts deletes the icon pack, and rebuild it again${reset_colors}\\n\\n" - -printf "${info_color}moving icons from icons to todo...${reset_colors}\\n" -mv -u icons/apps/*.svg todo/apps/ -mv -u icons/places/*.svg todo/places/ -mv -u icons/categories/*.svg todo/categories/ -mv -u icons/devices/*.svg todo/devices/ -mv -u icons/status/*.svg todo/status/ -mv -u icons/mimetypes/*.svg todo/mimetypes/ -mv -u icons/actions/*.svg todo/actions/ -mv -u icons/actions-sym/*.svg todo/actions-sym/ -mv -u icons/animations/*.svg todo/animations/ - -printf "${info_color}removing last build...${reset_colors}\\n" -rm aleta -rf - -printf "${info_color}rebuilding folders...${reset_colors}\\n" -./tasks/rebuildfolders.sh - -printf "${info_color}copying the index.theme...${reset_colors}\\n" -cp other/index.theme aleta/index.theme - -printf "${info_color}starting link process...${reset_colors}\\n" -./tasks/linkcall.sh & - -printf "${info_color}exporting all the icons...${reset_colors}\\n" -./tasks/export/export-places.sh -./tasks/export/export-apps.sh -./tasks/export/export-categories.sh -./tasks/export/export-devices.sh -./tasks/export/export-status.sh -./tasks/export/export-mimetypes.sh -./tasks/export/export-actions.sh -./tasks/export/export-sym-actions.sh -./tasks/export/export-animations.sh - -printf "${info_color}Launching misc commands${reset_colors}\\n" -./tasks/misc.sh - -printf "${info_color}Installing/Updating the install of aleta${reset_colors}\\n" -rm -r ~/.icons/aleta -mv aleta ~/.icons/aleta - -printf "${comple_color}\\nF i n i s h e d${reset_colors}\\n" -printf "${info_color}I hope you like my icon pack!${reset_colors}\\n" diff --git a/tasks/build-one.sh b/tasks/build.sh similarity index 100% rename from tasks/build-one.sh rename to tasks/build.sh