From 5987072fe9b9f3f4f3d4f23467051df2f3338ff3 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Fri, 8 Sep 2017 18:04:20 +0300 Subject: [PATCH] add parameter to install/fetch translations --- install.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 0f6bce008..ecc11714e 100755 --- a/install.sh +++ b/install.sh @@ -13,7 +13,13 @@ fi cd build cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=$build_type .. -make + +if [ $1 == "-translations" ] ; then + make fetch-translations +else + make +fi + sudo make install oldDeskFile="/usr/share/applications/latte-dock.desktop"