File: stop-sample-server.bat

package info (click to toggle)
libquartz-java 1%3A1.8.6-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 3,380 kB
  • sloc: java: 28,855; xml: 1,248; sh: 225; makefile: 4
file content (19 lines) | stat: -rwxr-xr-x 398 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@echo off

rem All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.

setlocal

@SET WD=%~d0%~p0

rem Set the path to your Terracotta server home here
@SET TC_HOME=%WD%..\..\..

IF NOT EXIST "%TC_HOME%\bin\stop-tc-server.bat" (
echo "Modify the script to set TC_HOME" 
exit /B
)

start "terracotta" "%TC_HOME%\bin\stop-tc-server.bat"

endlocal