mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-22 10:43:35 +01:00
13 lines
310 B
Bash
Executable File
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
|