mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
12 lines
274 B
Batchfile
12 lines
274 B
Batchfile
@ echo off
|
|
:: Script for starting the Salt-Minion
|
|
:: Accepts all parameters that Salt-Minion Accepts
|
|
|
|
:: Define Variables
|
|
Set SaltDir=%~dp0
|
|
Set SaltDir=%SaltDir:~0,-1%
|
|
Set Python=%SaltDir%\bin\python.exe
|
|
Set Script=%SaltDir%\bin\Scripts\salt-unity
|
|
|
|
"%Python%" "%Script%" %*
|