Last active
April 28, 2022 07:53
-
-
Save FradSer/190effc808ae651e97c930900c96ecdd to your computer and use it in GitHub Desktop.
Remove old Oculus Integration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /bin/bash | |
echo "Removing Oculus folder..." | |
rm -rf ./Assets/Oculus ./Assets/Oculus.meta | |
echo "Removing files named with oculus, OVR, AndroidManifest, vrapi, vrlib, vrplatlib..." | |
find . -name "oculus" -exec rm -rf {} \; | |
find . -name "OVR" -exec rm -rf {} \; | |
find . -name "AndroidManifest" -exec rm -rf {} \; | |
find . -name "vrapi" -exec rm -rf {} \; | |
find . -name "vrlib" -exec rm -rf {} \; | |
find . -name "vrplatlib" -exec rm -rf {} \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment