9 lines
177 B
Bash
Executable file
9 lines
177 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "pre-commit: Refreshing packwiz"
|
|
cd src
|
|
packwiz refresh
|
|
echo "pre-commit: Adding changes to git"
|
|
git add .
|
|
#git commit --amend --no-edit
|
|
echo "pre-commit: Done"
|