blob: c3c14dc10225bd08b4cea9e338ff62538afe5c3e (
plain)
1
2
3
4
5
6
7
|
#!/bin/zsh
alias commit="./commit.sh"
alias setup="python3 setup.py"
echo "Added aliases for commit and setup."
echo ""
echo "Run 'setup' to start the setup again."
echo "Run 'commit' to commit changes. Run commit -h for help."
|