mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-22 09:39:58 -05:00
14 lines
245 B
Bash
14 lines
245 B
Bash
|
#!/bin/bash
|
||
|
SCRIPTDIR=`dirname $0`
|
||
|
cd $SCRIPTDIR
|
||
|
PATHDIR=`pwd`
|
||
|
PROJECT_ROOT=$PATHDIR/..
|
||
|
SRCDIR=$PROJECT_ROOT/
|
||
|
LIBDIR=$PROJECT_ROOT/lib
|
||
|
|
||
|
# add the src directory to the python path
|
||
|
export PYTHONPATH=$PYTHONPATH:$SRCDIR
|
||
|
|
||
|
# run the sample
|
||
|
python $@
|