Skip to content
Snippets Groups Projects
Commit e3227ee2 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

added get-packs

parent 9f2d60b8
No related branches found
No related tags found
No related merge requests found
function do_subdirs
{
local subdirs="zafl"
local my_cwd=$PWD
for subdir in $subdirs
do
cd $subdir
if [[ -x ./get-packages.sh ]]; then
./get-packages.sh "$@"
fi
done
}
function main()
{
local grpc_packs="libgrpc++-dev protobuf-compiler-grpc"
do_subdirs "$@"
sudo apt install -y $grpc_packs
}
main "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment