This file contains 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
41 : Jean-Christophe Beaulieu FB | |
37 : McLeod Bethel-Thompson QB | |
37 : Max Zimmermann WR | |
36 : Andres Salgado Gómez WR | |
35 : Dominique Rhymes WR | |
34 : Jonathon Jennings QB | |
34 : Felix Faubert-Lussier WR | |
33 : James Wilder Jr. RB | |
33 : Kurleigh Gittens, Jr. WR | |
33 : Matthew Shiltz QB |
This file contains 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 -x | |
# This script takes .app file generated by unity for OSX, signs any plugin bundles and the main app, | |
# zips the project, and submits it for notarization | |
# Required data -- You need to fill these out with useful values! | |
USERNAME=# username of your apple account, usually your email | |
PASSWORD=# a generated password from appleid.apple.com | |
ROOT_FOLDER=# path to where your build lives | |
APP_NAME=# name of the app file unity created for you | |
PLUGIN_DIR=Contents/Plugins # you should be able to leave this be |
OlderNewer