Remove antibody script

This commit is contained in:
blallo 2023-05-19 22:06:02 +02:00
parent 6003f7b93e
commit cfd6ccee3b
No known key found for this signature in database
GPG key ID: C530464EEDCF489A

View file

@ -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: