diff options
author | brodokk <brodokk@brodokk.space> | 2021-11-17 00:26:52 +0100 |
---|---|---|
committer | brodokk <brodokk@brodokk.space> | 2021-11-17 00:26:52 +0100 |
commit | c8673ea34867ac9ab6e77e261b557c0c89cfc8b0 (patch) | |
tree | 749bc0d77d3e7e1123cfcce11255c33ebee7e84e /entrypoint.sh | |
parent | ea898a547496467a376b31db2fc7dd35cc8f40df (diff) | |
download | neosvr_docker-c8673ea34867ac9ab6e77e261b557c0c89cfc8b0.tar.xz neosvr_docker-c8673ea34867ac9ab6e77e261b557c0c89cfc8b0.zip |
Update env var
Diffstat (limited to '')
-rw-r--r-- | entrypoint.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/entrypoint.sh b/entrypoint.sh index 0c9d612..e4c1b80 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -35,9 +35,9 @@ case "$arguments" in /bin/sh -c "$arguments";; *) echo "Cleaning old stuff..." - find /steam/${LAUNCH_APP}/Data/Assets -atime +7 -delete - find /steam/${LAUNCH_APP}/Data/Cache -atime +7 -delete + find /steam/${STEAM_LAUNCH_APP}/Data/Assets -atime +7 -delete + find /steam/${STEAM_LAUNCH_APP}/Data/Cache -atime +7 -delete find /Logs -atime +30 -delete echo "Run NeosVR headless client..." - cd /steam/${LAUNCH_APP}/ && mono Neos.exe -l /logs;; + cd /steam/${STEAM_LAUNCH_APP}/ && mono Neos.exe -l /logs;; esac |