Difference between revisions of "Kubernetes/Tilt"
Jump to navigation
Jump to search
(Created page with "= Install = <source lang=bash> VERSION=$(curl --silent "https://api.github.com/repos/tilt-dev/tilt/releases/latest" | jq -r .tag_name | tr -d "v"); echo $VERSION TEMPDIR=$(mkt...") |
(No difference)
|
Revision as of 16:56, 18 January 2021
Install
VERSION=$(curl --silent "https://api.github.com/repos/tilt-dev/tilt/releases/latest" | jq -r .tag_name | tr -d "v"); echo $VERSION TEMPDIR=$(mktemp -d) curl -fsSL https://github.com/tilt-dev/tilt/releases/download/v$VERSION/tilt.$VERSION.linux.x86_64.tar.gz | tar -xzv --directory $TEMPDIR tilt sudo mv $TEMPDIR/tilt /usr/local/bin