mirror of
https://github.com/libretro/RetroArch
synced 2025-01-04 02:50:05 +00:00
8 lines
214 B
Bash
8 lines
214 B
Bash
#!/bin/sh
|
|
|
|
rm -r phoenix-ouya
|
|
cp -r phoenix phoenix-ouya
|
|
mv phoenix-ouya/src/org phoenix-ouya/src/com
|
|
rm -r phoenix-ouya/gen
|
|
find phoenix-ouya -type f -print0 | xargs -0 sed -b -i 's/org.retroarch/com.retroarch/g'
|