Skip to content

Commit

Permalink
Fix SC
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Hansson <[email protected]>
  • Loading branch information
enoch85 authored Dec 12, 2024
1 parent 2f4432f commit e88d85c
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion vagrant/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,17 @@
true
SCRIPT_NAME="Install NcVM with Vagrant"

# Clone this repo
git clone https://github.com/nextcloud/vm.git

cd vm
# We need a check here due to Shellcheck
if [ -d vm ]
then
cd vm
else
echo "Sorry, but the 'cd' dir doesn't exist, please report this issue to https://github.com/nextcloud/vm/"
exit
fi

# Do the installation
sudo bash nextcloud_install_production.sh --provisioning

0 comments on commit e88d85c

Please sign in to comment.