We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2088de commit 184d4b9Copy full SHA for 184d4b9
build.remotetech2.sh
@@ -6,6 +6,12 @@ if [ ! -f "$SRCDIR/Assembly-CSharp-firstpass.dll" ] \
6
|| [ ! -f "$SRCDIR/Assembly-CSharp.dll" ] \
7
|| [ ! -f "$SRCDIR/UnityEngine.dll" ];
8
then
9
+ if [ "$TRAVIS_SECURE_ENV_VARS" = "false" ]; then
10
+ # this should only happen for pull requests
11
+ echo "Unable to build as the env vars have not been set. Can't decrypt the zip."
12
+ exit 0; # can't decide if this should error
13
+ fi
14
+
15
if [[ ! -f dlls.zip ]]; then
16
echo "Need to get dependency .dll's"
17
wget -O dlls.zip "https://www.dropbox.com/s/kyv25p3qn166nzp/dlls.zip?dl=1"
@@ -27,3 +33,4 @@ then
27
33
fi
28
34
29
35
cd src/RemoteTech2 && xbuild
36
0 commit comments