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