mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 09:39:58 -05:00
12 lines
231 B
Batchfile
12 lines
231 B
Batchfile
@echo off
|
|
setlocal ENABLEDELAYEDEXPANSION
|
|
:: Clear the command-prompt screen
|
|
cls
|
|
set SRCDIR=%cd%\..\
|
|
set LIBDIR=%cd%\..\lib
|
|
set PYTHONPATH=%PYTHONPATH%;%SRCDIR%
|
|
setlocal DisableDelayedExpansion
|
|
:: Run the sample
|
|
python %*
|
|
endlocal
|