diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-11-30 00:28:43 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-11-30 00:28:43 -0200 |
commit | 5844ec7bc0686cdb911f2588d3ea56471bb71784 (patch) | |
tree | 5d8174dad587b3aed284bb286fbaaee69ee75519 | |
parent | 93c49162be934b53b6a64dfa644e635670b45107 (diff) | |
download | kvmx-5844ec7bc0686cdb911f2588d3ea56471bb71784.tar.gz kvmx-5844ec7bc0686cdb911f2588d3ea56471bb71784.tar.bz2 |
Provision: install curl into development bundle
-rwxr-xr-x | share/provision/development | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/provision/development b/share/provision/development index 51d9ecf..ccc0293 100755 --- a/share/provision/development +++ b/share/provision/development @@ -33,7 +33,7 @@ cd echo "Installing basic dependencies..." sudo sed -i -e "s|main$|main contrib non-free|g" /etc/apt/sources.list || exit 1 sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get autoremove -y && sudo apt-get clean || exit 1 -$APT_INSTALL git || exit 1 +$APT_INSTALL git curl || exit 1 # Tools if [ ! -e "apps/inception" ]; then |