mirror of https://github.com/perkeep/perkeep.git
7 lines
358 B
Bash
Executable File
7 lines
358 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find . -type f -name '*.go' -exec perl -pi -e 's!"code.google.com/!"camlistore.org/third_party/code.google.com/!' {} \;
|
|
find . -type f -name '*.go' -exec perl -pi -e 's!"launchpad.net/!"camlistore.org/third_party/launchpad.net/!' {} \;
|
|
find . -type f -name '*.go' -exec perl -pi -e 's!"github.com/!"camlistore.org/third_party/github.com/!' {} \;
|
|
|