netmsgs  1.2.2
RoadNarrows Robotics Network Messaging Package
pypath.sh
1 #!/bin/sh
2 ###############################################################################
3 # File: pypath.sh
4 #
5 # Description:
6 # When building, testing, or running against the local package, PYTHONPATH
7 # needs to point at the local package directory.
8 #
9 # To run (anywhere from inside netmsgs package): . ./pypath.sh
10 #
11 ###############################################################################
12 
13 pkgdir=${PWD%%/netmsgs/*}
14 
15 export PYTHONPATH=${pkgdir}/netmsgs/NetMsgs/modules:$PYTHONPATH