rector/bin/publish-prefixed-rector.sh
2018-05-28 11:31:50 +02:00

13 lines
310 B
Bash
Executable File

#!/usr/bin/env bash
# print each statement before run (https://stackoverflow.com/a/9966150/1348344) so we can see what is going on
set -x
cd build
git init
git remote add origin git@github.com:rectorphp/rector-prefixed.git
git add .
git commit -m "rebuild prefixed Rector" # date?
git push origin master -f