diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2013-06-21 18:34:24 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2013-06-21 18:34:24 -0700 |
commit | c52f4bc4d3e04c745846757eecea81e9a9b1044c (patch) | |
tree | 3287bf0d5a4a31330f610791263688be45df777c /testpath | |
parent | remove the shebang from all lib files, since they won't have an if __main__: (diff) | |
download | gentoo-keys-c52f4bc4d3e04c745846757eecea81e9a9b1044c.tar.gz gentoo-keys-c52f4bc4d3e04c745846757eecea81e9a9b1044c.tar.bz2 gentoo-keys-c52f4bc4d3e04c745846757eecea81e9a9b1044c.zip |
Add an automatice relative testpath file for runing from the git checkouts.
Diffstat (limited to 'testpath')
-rw-r--r-- | testpath | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testpath b/testpath new file mode 100644 index 0000000..ed569d0 --- /dev/null +++ b/testpath @@ -0,0 +1,17 @@ +# Sample file demonstrating an easy method for running the +# git sources without the need for installing. + + +# Edit the paths below and save the file as "testpath" +# the file will be ignored by git. + +# Example usage: + +# $ cd dev/git/esearch +# $ source ./testpath +# $ esearch some-package + + +export PATH="$(dirname $BASH_SOURCE[0])../pyGPG/bin:$(dirname $BASH_SOURCE[0])/bin:${PATH}" + +export PYTHONPATH="$(dirname $BASH_SOURCE[0])../pyGPG/:$(dirname $BASH_SOURCE[0])/:${PYTHONPATH}" |