aboutsummaryrefslogtreecommitdiff
path: root/provision/development
diff options
context:
space:
mode:
Diffstat (limited to 'provision/development')
-rwxr-xr-xprovision/development2
1 files changed, 2 insertions, 0 deletions
diff --git a/provision/development b/provision/development
index ee02b92..bca3847 100755
--- a/provision/development
+++ b/provision/development
@@ -27,6 +27,7 @@ MIRROR="$3"
APT_INSTALL="sudo LC_ALL=C DEBIAN_FRONTEND=noninteractive apt-get install -y"
# Dependencies
+echo "Installing basic dependencies..."
sudo sed -i -e "s|main$|main contrib non-free|g" /etc/apt/sources.list
sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get autoremove -y && sudo apt-get clean
$APT_INSTALL git
@@ -35,6 +36,7 @@ $APT_INSTALL git
if [ ! -e "apps" ]; then
git clone --recursive https://git.fluxo.info/rhatto/apps
else
+ echo "Updating apps repository..."
( cd apps &> /dev/null && git pull && git submodule update --init )
fi