From 1cb6c8bef840a96baa37392e9833a7674f805a83 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Wed, 27 Mar 2024 05:26:14 +0200 Subject: A bit more verbose update command --- update.sh | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'update.sh') diff --git a/update.sh b/update.sh index cd2aeaf..31e49d1 100755 --- a/update.sh +++ b/update.sh @@ -13,7 +13,11 @@ done binfiles=$(ls -1 $(pwd)/bin) for b in $binfiles do - if [ ! -L $AK_BINDIR/$b ] ; then ln -s $(pwd)/bin/$b $AK_BINDIR/$b ;fi + if [ ! -L $AK_BINDIR/$b ] + then + echo "Non existing link: $(basename $b) creating..." + ln -s $(pwd)/bin/$b $AK_BINDIR/$b + fi done # Updates lib files @@ -30,5 +34,9 @@ done libfiles=$(ls -1 $(pwd)/lib) for l in $libfiles do - if [ ! -L $AK_LIBDIR/$l ] ; then ln -s $(pwd)/lib/$l $AK_LIBDIR/$l ;fi + if [ ! -L $AK_LIBDIR/$l ] + then + echo "Non existing link: $(basename $l) creating..." + ln -s $(pwd)/lib/$l $AK_LIBDIR/$l + fi done -- cgit v1.2.3