1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-21 20:33:00 +00:00

Merge branch 'release/0.0.3'

This commit is contained in:
Jörn-Michael Miehe 2020-08-24 19:44:15 +02:00
commit 4aac4eb331
3 changed files with 12 additions and 7 deletions

View file

@ -2,7 +2,7 @@
# kiwi-config instance configuration #
######################################
version: '0.0.2'
version: '0.0.3'
runtime:
storage: /tmp/kiwi

15
kiwi
View file

@ -91,15 +91,20 @@ if [ ! -x "$(kiwi_executable)" ]; then
cd "kiwi-config-${KIWI_VERSION}" || :
KIWI_VERSION=$(cat "./src/${KIWI_VERSION_TAG}")
# install archive
mkdir -p "$(kiwi_installdir)"
mv "src" "Pipfile" "Pipfile.lock" "$(kiwi_installdir)/"
if [ -x "$(kiwi_executable)" ]; then
# after version update: no need to install
echo "kiwi-config v${KIWI_VERSION} found!"
else
# install archive
mkdir -p "$(kiwi_installdir)"
mv "src" "Pipfile" "Pipfile.lock" "$(kiwi_installdir)/"
echo "OK"
fi
# discard temp dir
cd "${WORKDIR}" || :
rm -rf "${tmpdir}"
echo "OK"
fi
# check virtualenv

View file

@ -1 +1 @@
0.0.2
0.0.3