Created
June 23, 2022 10:54
-
-
Save FradSer/aff040a4a4565f9bebbde0857d5a4567 to your computer and use it in GitHub Desktop.
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