Skip to content

Instantly share code, notes, and snippets.

@cbrgm
Created May 5, 2018 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbrgm/b0625bbc06c0e2f53bf45a98f2e26d68 to your computer and use it in GitHub Desktop.
Save cbrgm/b0625bbc06c0e2f53bf45a98f2e26d68 to your computer and use it in GitHub Desktop.
Install / Update jsonnet from source
# $ cat install.sh
# /bin/bash
set -e
# Clone and compile
git clone https://github.com/google/jsonnet.git
cd jsonnet
make
# Install to /usr/local/bin
sudo mv jsonnet /usr/local/bin/
# Cleanup
cd ..
rm -rf jsonnet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment