Skip to content

Instantly share code, notes, and snippets.

@naus3a
Created February 24, 2021 13:31
Show Gist options
  • Save naus3a/30942111b3a31d40230ce4b0fae38e0c to your computer and use it in GitHub Desktop.
Save naus3a/30942111b3a31d40230ce4b0fae38e0c to your computer and use it in GitHub Desktop.
microscript to upload builds quest builds to the oculus store
#!/bin/bash
#path to the ovr platform util
OVR=~/ovr-platform-util
ID="1234"
SECRET="1234"
APK=~/app.apk
OBB=~/app.obb
CHAN="chan"
$OVR upload-quest-build --app-id $ID --app-secret $SECRET --apk $APK --obb $OBB --channel $CHAN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment