Created
September 20, 2013 20:23
-
-
Save Red-Folder/6643336 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
# Rename the plugin interface versions from .txt to .java | |
# In my SVN I store as .txt, but in Github I want them to be .java | |
$path = $env:SOURCEPATH + "\src\com\red_folder\phonegap\plugin\backgroundservice\*.txt" | |
Dir $path | rename-item -newname { $_.name -replace '\.txt$','.java' } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment