forked from ioBroker/ioBroker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiobroker.bat
26 lines (26 loc) · 819 Bytes
/
iobroker.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@echo off
if %1==fix (
npx @iobroker/fix
) else (
if exist serviceIoBroker.bat (
if %1==start (
if [%2]==[] (
call serviceIoBroker.bat start
) else (
node node_modules/iobroker.js-controller/iobroker.js %1 %2 %3 %4 %5 %6 %7 %8
)
) else (
if %1==stop (
if [%2]==[] (
call serviceIoBroker.bat stop
) else (
node node_modules/iobroker.js-controller/iobroker.js %1 %2 %3 %4 %5 %6 %7 %8
)
) else (
node node_modules/iobroker.js-controller/iobroker.js %1 %2 %3 %4 %5 %6 %7 %8
)
)
) else (
node node_modules/iobroker.js-controller/iobroker.js %1 %2 %3 %4 %5 %6 %7 %8
)
)