FIX - Force Alpine directory creation in case we're in Gitlab CI

This commit is contained in:
2018-08-04 23:12:01 +02:00
parent 63ca496de5
commit e7fd7b00b8
2 changed files with 4 additions and 2 deletions

View File

@ -5,6 +5,7 @@ DIR=${DIRPATH:-'/alpine'}
script_url="https://raw.githubusercontent.com/alpinelinux/alpine-chroot-install"
script_version="v0.9.0"
script_name="alpine-chroot-install"
FORCE_EXEC=${FORCE_EXEC:-0}
# Tests
if ! [[ $DIR == /* ]]; then
@ -20,7 +21,7 @@ if ! test -f "$SCRIPT"; then
fi
# Install Alpine
if ! test -d "$DIR"; then
if ! test -d "$DIR" || ! [[ "$FORCE_EXEC" == 0 ]]; then
sudo bash ./$SCRIPT -d $DIR -m http://ftp.halifax.rwth-aachen.de/alpine \
-p abuild \
-p bash \