mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-10 15:12:01 -03:30
install.sh: Fix ncp-provisioning not being executed on baremetal install
Signed-off-by: Tobias Knöppler <6317548+theCalcaholic@users.noreply.github.com>
This commit is contained in:
parent
61ba6a63fa
commit
3c143dd7bd
@ -35,10 +35,12 @@ apt-get install --no-install-recommends -y git ca-certificates sudo lsb-release
|
||||
# get install code
|
||||
if [[ "${CODE_DIR}" == "" ]]; then
|
||||
echo "Getting build code..."
|
||||
CODE_DIR="${TEMPDIR}"/nextcloudpi
|
||||
git clone -b "${BRANCH}" https://github.com/nextcloud/nextcloudpi.git "${CODE_DIR}"
|
||||
CODE_DIR_TMP="${TEMPDIR}"/nextcloudpi
|
||||
git clone -b "${BRANCH}" https://github.com/nextcloud/nextcloudpi.git "${CODE_DIR_TMP}"
|
||||
cd "$CODE_DIR_TMP"
|
||||
else
|
||||
cd "${CODE_DIR}"
|
||||
fi
|
||||
cd "${CODE_DIR}"
|
||||
|
||||
# install NCP
|
||||
echo -e "\nInstalling NextCloudPi..."
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user