mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
18 lines
330 B
Plaintext
18 lines
330 B
Plaintext
task: @confirm install-deps
|
|
echo "hi, $1"
|
|
|
|
install-deps: @skip:key=./Pipfile.lock system-deps
|
|
pipenv install
|
|
|
|
system-deps: install-jq
|
|
set -ex
|
|
|
|
brew install pipenv
|
|
|
|
if ! brew info --installed --json | jq 'map(.name) | index( "pipenv" )'; then
|
|
brew install pipenv
|
|
fi
|
|
|
|
install-jq:
|
|
brew install jq
|