SNRK-78: requirments installation script is added

This commit is contained in:
liubar.pa 2023-05-13 20:05:22 +03:00
parent fbd5237573
commit 7fb778e483

27
requirments.sh Executable file
View File

@ -0,0 +1,27 @@
set -e
apt-get update
apt-get install -y sudo
sudo apt-get install -y kotlin
for dir in ./*/
do
if [[($dir == *'snark'*)]]
then
cd "$dir"
if [[ $(find -type d -name "ci") ]]
then
cd ci
./requirments.sh
cd ..
fi
cd ..
fi
done