mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 23:00:17 +00:00
26 lines
347 B
Plaintext
26 lines
347 B
Plaintext
echo:
|
|
cat Bakefile
|
|
format:
|
|
black .
|
|
|
|
full-install: system-deps install
|
|
install: node-deps python-deps
|
|
|
|
|
|
argv-example:
|
|
set -eux
|
|
echo "HELLO, $WHO"
|
|
echo $@
|
|
|
|
dangerous-example: @confirm:secure
|
|
rm -fr *
|
|
|
|
python-deps:
|
|
# Example of comments
|
|
pipenv install
|
|
node-deps:
|
|
yarn install
|
|
|
|
system-deps:
|
|
brew install pipenv
|