Skip to content

Commit 9a96c6a

Browse files
committed
Fix incorrect arg order on call to clone_or_pull() & other bits
1 parent 427aad2 commit 9a96c6a

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

bt-iso

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,15 +178,14 @@ TKLDEV_DOCKER=${TKLDEV_DOCKER:-/turnkey/public/tkldev-docker}
178178
INIT_CONF="$TKLDEV_DOCKER/inithooks.conf"
179179

180180
if [[ "$skip_setup" != "true" ]]; then
181-
clone_or_pull https://github.com/turnkeylinux/tkldev-docker.git \
182-
"$TKLDEV_DOCKER"
181+
clone_or_pull "$TKLDEV_DOCKER" turnkeylinux/tkldev-docker
183182
elif [[ ! -d "$TKLDEV_DOCKER" ]]; then
184183
check_debug "tkldev-docker repo not found: $TKLDEV_DOCKER"
185184
elif [[ ! -f "$INIT_CONF" ]]; then
186185
check_debug "Inithooks preseed file ($INIT_CONF) not found"
187-
else
188-
source "$INIT_CONF"
189186
fi
187+
188+
source "$INIT_CONF"
190189
if [[ -z "$APP_DOMAIN" ]]; then
191190
check_debug "APP_DOMAIN not set"
192191
fi

0 commit comments

Comments
 (0)