This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script aims to build a bootstrap CMake + gRPC environment for | |
# your project! It tries and saves space for the build - shallow cloning | |
# by default. Post build it'll take 1.5 GBs total, 340 MBs for just the | |
# final binaries needed for your project. | |
# | |
# magical bash snip @ https://stackoverflow.com/a/246128 | |
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" | |
becho() { echo -e "\e[1m$@\e[0m"; } |