mac-dotfiles/justfile

22 lines
375 B
Plaintext
Raw Normal View History

2024-01-17 11:30:05 -05:00
_default:
@just --list
# performs steps for mac
mac:
./install-cli-tools.sh
./setup-shell-config.sh
./install-mac-apps.sh
# performs steps for linux
linux:
./install-cli-tools.sh
./setup-shell-config.sh
# checks all shell scripts for errors
shellcheck:
shellcheck *.sh
# formats all shell scripts consistently
shfmt:
shfmt -i 2 -w -s *.sh