adds force-install to /bin

This commit is contained in:
Martinez 2017-04-10 11:13:11 +02:00
parent bd3494d184
commit c9c089afad

19
bin/force-install Executable file
View file

@ -0,0 +1,19 @@
#! /bin/zsh
# encoding: utf-8
for arg in $@
do
if [[ "$arg" =~ "::" ]]; then
suffix=""
else
suffix="::gentoo"
fi
cave perform fetch "${arg}${suffix}" && \
cave perform install --destination installed "${arg}${suffix}"
if [[ $? -eq 1 ]]; then
echo "!!! failed during $arg"
exit 1
fi
done