View index.html
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- | |
If you are serving your web app in a path other than the root, change the | |
href value below to reflect the base path you are serving from. | |
The path provided below has to start and end with a slash "/" in order for | |
it to work correctly. | |
For more details: | |
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base |
View index.html
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- | |
If you are serving your web app in a path other than the root, change the | |
href value below to reflect the base path you are serving from. | |
The path provided below has to start and end with a slash "/" in order for | |
it to work correctly. |
View IosPostBuild.cs
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
/** watch out: UnityEditor.iOS.Xcode is missing if iOS builds are not installed | |
* | |
* There is also no reliable compiler flag to check for this that works | |
* on 2017 LTS and new versions. We have two options: | |
* | |
* a) Check if UNITY_IOS is set | |
* * Means it must be available thus there is no risk of errors | |
* if ios unity is not installed | |
* * builds will fail to run the post processing step and generate | |
* invalid iOS builds IF the user builds the iOS version without |
View docker-create-swarm.sh
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 | |
set -e | |
if [ -z "$DIGITALOCEAN_ACCESS_TOKEN" ]; then | |
echo >&2 "ERROR: You must export DIGITALOCEAN_ACCESS_TOKEN" | |
exit 1 | |
fi | |
docker pull swarm > /dev/null |