From 0ecf014942edaff67b79ca47d8f6dd249a910791 Mon Sep 17 00:00:00 2001 From: germedeb Date: Sat, 10 Sep 2022 15:32:33 -0300 Subject: [PATCH] renamed linkcall to runlink for better autocomplete in shells --- tasks/build.sh | 4 ++-- tasks/{linkcall.sh => runlink.sh} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename tasks/{linkcall.sh => runlink.sh} (100%) diff --git a/tasks/build.sh b/tasks/build.sh index ef9d7fd..c398696 100755 --- a/tasks/build.sh +++ b/tasks/build.sh @@ -149,9 +149,9 @@ printf "${info_color}Launching misc commands...${reset_colors}\\n" printf "${info_color}starting link process...${reset_colors}\\n" if [ "$VERBOSE" = yes ] ; then - ./tasks/linkcall.sh + ./tasks/runlink.sh else - ./tasks/linkcall.sh >/dev/null 2>&1 + ./tasks/runlink.sh >/dev/null 2>&1 fi case "$@" in *--autoinstall*|*-i*) printf "${info_color}Performing an Update/Installation of aleta${reset_colors}\\n" diff --git a/tasks/linkcall.sh b/tasks/runlink.sh similarity index 100% rename from tasks/linkcall.sh rename to tasks/runlink.sh