View build.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 | |
if [ ! -f build.conf ]; then | |
echo "File build.conf does not exist, creating it." | |
echo "UpdateRustTargets=true" >>build.conf | |
echo "BuildWindows=true" >>build.conf | |
echo "BuildLinux=true" >>build.conf | |
echo "BuildMac=true" >>build.conf | |
exit 0 | |
fi |
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
<html style="display:none;"> | |
<head> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | |
</head> | |
<body> | |
<div id="bg">No flash page load :)</div> | |
</body> | |
<script> |