blob: f8a34b77f9a1a1d246e3993f05e857cb8d645291 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env bash
# Sadly preprocessor likes to insert extra whitespace after a remap
# This removes the space after //$$ which should mean that remaps now
# are fully reversible by selecting the original project and running
# this script.
find src/main/ -type f -exec sed -i -e 's|//\$\$ |//$$|g' {} +
|