install: Fixed directory for reading config after git

This commit is contained in:
Daniel unbrot Pätzold
2026-05-03 15:36:54 +02:00
parent 08df1c2897
commit cfae3ac1f6
+1 -1
View File
@@ -69,7 +69,7 @@ do_clone_and_done() {
info "Cloning $REPO_URL into $MOUNT_POINT..." info "Cloning $REPO_URL into $MOUNT_POINT..."
cd "$MOUNT_POINT" || die "Cannot cd to $MOUNT_POINT." cd "$MOUNT_POINT" || die "Cannot cd to $MOUNT_POINT."
git clone --progress --depth 1 -b $REPO_BRANCH "$REPO_URL" . || die "git clone failed." git clone --progress --depth 1 -b $REPO_BRANCH "$REPO_URL" . || die "git clone failed."
${MOUNT_POINT}/setup_system.inc.sh ${MOUNT_POINT}/system_setup/setup_system.inc.sh
finish_install "$dev" finish_install "$dev"
} }