Created
September 4, 2013 00:53
-
-
Save ytnobody/6431528 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PROJ_DIR=$1 ; shift | |
git clone [email protected]:ytnobody/$PROJ_DIR.git | |
cd $PROJ_DIR | |
git mv lib/Voson lib/Nephia | |
find ./* ./.gitignore -type f | xargs sed -i 's/Voson/Nephia/g; s/voson-setup/nephia-setup/g;' | |
git add . && minil build && minil test && git add . && git commit -m 'rename' && git push | |
cpanm . | |
### | |
### usage: ./nephia_migrate.sh Voson-Plugin-Someone | |
### |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment