mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
12 lines
262 B
Batchfile
12 lines
262 B
Batchfile
|
@ echo off
|
||
|
:: Script for invoking salt-run
|
||
|
:: Accepts all parameters that salt-run accepts
|
||
|
|
||
|
:: Define Variables
|
||
|
Set SaltDir=%~dp0
|
||
|
Set SaltDir=%SaltDir:~0,-1%
|
||
|
Set Python=%SaltDir%\bin\python.exe
|
||
|
Set Script=%SaltDir%\bin\Scripts\salt-run
|
||
|
|
||
|
"%Python%" "%Script%" %*
|