mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00
16 lines
278 B
Bash
16 lines
278 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [[ -n "$UNITY_SERIAL" ]]; then
|
|
#
|
|
# PROFESSIONAL (SERIAL) LICENSE MODE
|
|
#
|
|
# This will return the license that is currently in use.
|
|
#
|
|
unity-editor \
|
|
-batchmode \
|
|
-nographics \
|
|
-logFile /dev/stdout \
|
|
-quit \
|
|
-returnlicense
|
|
fi
|