Skip to content

Commit 95314ac

Browse files
lsimonsDaanHoogland
authored andcommitted
Fix set-eclipse-profile.sh to work with mac/bsd sed.
Signed-off-by: Daan Hoogland <daan@onecht.net>
1 parent 96272f4 commit 95314ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/eclipse/set-eclipse-profile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ for file in `find . -name org.eclipse.m2e.core.prefs | xargs`; do
2121
echo Skipping $file;
2222
else
2323
echo Replacing $file;
24-
sed -i s/activeProfiles=/activeProfiles=eclipse/g $file;
24+
sed -i -e s/activeProfiles=/activeProfiles=eclipse/g $file;
2525
fi;
2626
done

0 commit comments

Comments
 (0)