From cfd6ccee3b61842d8aa634678d7fbeb1c3df7c71 Mon Sep 17 00:00:00 2001 From: blallo Date: Fri, 19 May 2023 22:06:02 +0200 Subject: [PATCH] Remove antibody script --- update_antibody.sh | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 update_antibody.sh diff --git a/update_antibody.sh b/update_antibody.sh deleted file mode 100755 index 2a17d8d..0000000 --- a/update_antibody.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env zsh -echo "Updating antibody cache" - -currpath=$(realpath $PWD) - -if [ ! -d ${currpath}/compiled ]; then - mkdir compiled -fi - -antibody_bin=$(which antibody) -if [ "z${antibody_bin}" = "z" ]; then - echo "Error: you need to install antibody first!" - exit 1 -fi - -${antibody_bin} bundle < ${currpath}/antibody.plugins.txt > ${currpath}/compiled/antibody.zsh -if [ ! -d ~/.config/zsh ]; then - mkdir -p ~/.config/zsh -fi -cp ${currpath}/compiled/antibody.zsh ~/.config/zsh/ - -# vim: set ft=sh et sw=0 ts=2 sts=0: