mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00

* Remove -nographics flag, ensure -batchmode * Remove explicit batch mode * Add libnotify4 and bin for notify-send * non-interactive frontend * Move docker changes to base image (docker repo)
14 lines
243 B
Bash
Executable File
14 lines
243 B
Bash
Executable File
#!/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 \
|
|
-logFile /dev/stdout \
|
|
-quit \
|
|
-returnlicense
|
|
fi
|