joshdholtz / fastlane-plugin-rename_android_package

MIT License
8 stars 13 forks source link

sed command not working #1

Open realgsong opened 4 years ago

realgsong commented 4 years ago

Tried following command

find ./android/app/src -name '*.java' -type f -exec sed -i '' 's/com.test.app.all/com.test.app.dedicated/' {} \;

first empty string '' in sed command looks incorrect. It should be

find ./android/app/src -name '*.java' -type f -exec sed -i 's/com.test.app.all/com.test.app.dedicated/' {} \;

Environments

henninghall commented 4 years ago

Having the same issue, it works on MacOS but not ubuntu/linux

nickhow83 commented 1 month ago

Having the same issue, it works on MacOS but not ubuntu/linux

I'm still seeing this issue 4 years later 😭