From 9653c7d5bd819c1879055b4b3f7bf3b6c8642f99 Mon Sep 17 00:00:00 2001 From: Sipun Ku Mahanta Date: Mon, 2 Jan 2023 05:50:22 +0000 Subject: [PATCH] scripts: setup: Revive crowdin cli installation script - Source -https://github.com/crowdin/crowdin-cli#installation Change-Id: Id529f6840c3763ef5b9125f7107efaf1e996d78f Signed-off-by: Sipun Ku Mahanta --- setup/crowdin-cli.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/setup/crowdin-cli.sh b/setup/crowdin-cli.sh index 0460b2f9..216d0930 100755 --- a/setup/crowdin-cli.sh +++ b/setup/crowdin-cli.sh @@ -3,6 +3,12 @@ # Script to setup environment for crowdin # shellcheck disable=SC1010 -sudo apt install python-git -curl -sSL https://get.rvm.io | bash -s stable --ruby -rvm all do gem install crowdin-cli +# Install crowdin-cli +wget https://artifacts.crowdin.com/repo/deb/crowdin3.deb -O crowdin.deb +sudo dpkg -i crowdin.deb +echo "crowdin-cli installed" +echo "" + +# Test crowdin-cli +echo "Your crowdin version:" +crowdin --version \ No newline at end of file