2020-01-29 22:37:11 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
if [[ -n "$UNITY_SERIAL" ]]; then
|
|
|
|
#
|
|
|
|
# PROFESSIONAL (SERIAL) LICENSE MODE
|
|
|
|
#
|
|
|
|
# This will return the license that is currently in use.
|
|
|
|
#
|
2020-11-26 17:19:17 +00:00
|
|
|
unity-editor \
|
|
|
|
-batchmode \
|
|
|
|
-nographics \
|
|
|
|
-logFile /dev/stdout \
|
|
|
|
-quit \
|
|
|
|
-returnlicense
|
2020-01-29 22:37:11 +00:00
|
|
|
fi
|