Created
August 21, 2013 07:55
-
-
Save ytnobody/6291519 to your computer and use it in GitHub Desktop.
migration nephia to primalnephia
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 | |
cd $PROJ_DIR | |
git mv lib/Nephia lib/PrimalNephia | |
find ./* ./.gitignore -type f | xargs sed -i 's/Nephia/PrimalNephia/g; s/nephia-setup/primalnephia-setup/g;' | |
git add . && minil build && minil test && git add . && git commit -m 'rename' && git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment