aboutsummaryrefslogtreecommitdiff
path: root/bin/update
diff options
context:
space:
mode:
authorkaotisk <kaotisk@arching-kaos.org>2024-11-15 08:32:45 +0200
committerkaotisk <kaotisk@arching-kaos.org>2024-11-15 08:32:45 +0200
commit040db42ed01f3077a7222c890acd8cf7fd298cdc (patch)
tree1582cd5416bb21bde971c0a008b55434bfa91bc9 /bin/update
parent45347c19d5e0e99deedc8834d59cd466431c11f8 (diff)
downloadarching-kaos-tools-040db42ed01f3077a7222c890acd8cf7fd298cdc.tar.gz
arching-kaos-tools-040db42ed01f3077a7222c890acd8cf7fd298cdc.tar.bz2
arching-kaos-tools-040db42ed01f3077a7222c890acd8cf7fd298cdc.zip
do it right
Diffstat (limited to 'bin/update')
-rwxr-xr-xbin/update19
1 files changed, 0 insertions, 19 deletions
diff --git a/bin/update b/bin/update
deleted file mode 100755
index 71b91b6..0000000
--- a/bin/update
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-if [ -L $AK_WORKDIR/bin/ak ]
-then
- $source_dir ="$(ls -l $AK_WORKDIR/bin/ak | rev | cut -d ' ' -f 1 | rev | sed 's/bin\/ak//')"
-else
- echo "Can't update... ak script is not a link"
- exit 1
-fi
-
-if [ -d ${source_dir} ] && [ -d ${source_dir}/.git ]
-then
- cd ${source_dir}
- git pull
- ./update.sh
-else
- echo "Can't update... source not found or not a git repository"
- exit 1
-fi