diff --git a/builder/steps/return_license.sh b/builder/steps/return_license.sh index 725c71a9..be21b1ed 100644 --- a/builder/steps/return_license.sh +++ b/builder/steps/return_license.sh @@ -1,14 +1,16 @@ #!/usr/bin/env bash -# -# PROFESSIONAL (SERIAL) LICENSE MODE -# -# This will return the license that is currently in use. -# -xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' \ - /opt/Unity/Editor/Unity \ - -batchmode \ - -nographics \ - -logFile /dev/stdout \ - -quit \ - -returnlicense +if [[ -n "$UNITY_SERIAL" ]]; then + # + # PROFESSIONAL (SERIAL) LICENSE MODE + # + # This will return the license that is currently in use. + # + xvfb-run --auto-servernum --server-args='-screen 0 640x480x24' \ + /opt/Unity/Editor/Unity \ + -batchmode \ + -nographics \ + -logFile /dev/stdout \ + -quit \ + -returnlicense +fi