diff options
Diffstat (limited to 'entrypoint.sh')
-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 |