Repository: cloudstack Updated Branches: refs/heads/master 96272f4cd -> 95314ac45
Fix set-eclipse-profile.sh to work with mac/bsd sed. Signed-off-by: Daan Hoogland <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/95314ac4 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/95314ac4 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/95314ac4 Branch: refs/heads/master Commit: 95314ac4528163cae7df609e7d44779e4f90e904 Parents: 96272f4 Author: Leo Simons <[email protected]> Authored: Wed Jun 4 10:48:00 2014 +0200 Committer: Daan Hoogland <[email protected]> Committed: Thu Jun 5 09:40:37 2014 +0200 ---------------------------------------------------------------------- tools/eclipse/set-eclipse-profile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/95314ac4/tools/eclipse/set-eclipse-profile.sh ---------------------------------------------------------------------- diff --git a/tools/eclipse/set-eclipse-profile.sh b/tools/eclipse/set-eclipse-profile.sh index 1abc662..c0cc9a9 100644 --- a/tools/eclipse/set-eclipse-profile.sh +++ b/tools/eclipse/set-eclipse-profile.sh @@ -21,6 +21,6 @@ for file in `find . -name org.eclipse.m2e.core.prefs | xargs`; do echo Skipping $file; else echo Replacing $file; - sed -i s/activeProfiles=/activeProfiles=eclipse/g $file; + sed -i -e s/activeProfiles=/activeProfiles=eclipse/g $file; fi; done \ No newline at end of file
