Fix path typo
parent
45b49c7fb7
commit
6a9c5b71a4
|
|
@ -1336,7 +1336,7 @@ class SetupMac {
|
|||
const unityChangeset = yield unity_changeset_1.getUnityChangeset(buildParameters.version);
|
||||
//Need to set environment variables from here because we execute
|
||||
//the scripts on the host for mac
|
||||
process.env.SCRIPT_DIRECTORY = `${actionFolder}/platforms/mac/`;
|
||||
process.env.SCRIPT_DIRECTORY = `${actionFolder}/platforms/mac`;
|
||||
process.env.UNITY_VERSION = buildParameters.version;
|
||||
process.env.UNITY_CHANGESET = unityChangeset.changeset;
|
||||
process.env.UNITY_SERIAL = buildParameters.unitySerial;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1,12 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
printenv
|
||||
|
||||
#
|
||||
# Run steps
|
||||
#
|
||||
source $SCRIPT_DIRECTORY/steps/setup.sh
|
||||
source $SCRIPT_DIRECTORY/platforms/mac/steps/activate.sh
|
||||
source $SCRIPT_DIRECTORY/platforms/mac/steps/build.sh
|
||||
source $SCRIPT_DIRECTORY/platforms/mac/steps/return_license.sh
|
||||
source $SCRIPT_DIRECTORY/steps/activate.sh
|
||||
source $SCRIPT_DIRECTORY/steps/build.sh
|
||||
source $SCRIPT_DIRECTORY/steps/return_license.sh
|
||||
|
||||
#
|
||||
# Instructions for debugging
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ class SetupMac {
|
|||
|
||||
//Need to set environment variables from here because we execute
|
||||
//the scripts on the host for mac
|
||||
process.env.SCRIPT_DIRECTORY = `${actionFolder}/platforms/mac/`;
|
||||
process.env.SCRIPT_DIRECTORY = `${actionFolder}/platforms/mac`;
|
||||
process.env.UNITY_VERSION = buildParameters.version;
|
||||
process.env.UNITY_CHANGESET = unityChangeset.changeset;
|
||||
process.env.UNITY_SERIAL = buildParameters.unitySerial;
|
||||
|
|
|
|||
Loading…
Reference in New Issue