From a7f14557096722463fd3d6ec0a5df7c763a9195e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 16 Oct 2016 17:35:28 +0200 Subject: [PATCH] Install Nikola by default --- common/configure_fresh_system | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 69724e9e..46801e23 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -144,9 +144,11 @@ fi $SUDO npm install -g reveal-md $SUDO npm install -g diff-so-fancy -# vdir syncer -echo "installing vdirsyncer" -$SUDO pip install vdirsyncer +if [[ -z $NOPYTHON3 ]]; then + $SUDO pip3 install Nikola --upgrade +else + $SUDO pip install Nikola --upgrade +fi if [[ -z $USER ]]; then USER=`whoami`