aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Dolbec <dolsen@gentoo.org>2016-01-23 11:01:50 -0800
committerBrian Dolbec <dolsen@gentoo.org>2016-01-23 11:02:27 -0800
commitc4f06c7c3a4929b816596df752364d73fe6f73fe (patch)
tree0aeaf24bbbfc3d5b864c4cc27d9126755a5aa41e /testpath
parentactions.py: Update ssl-fetch Connector call, add climit (diff)
downloadgentoo-keys-c4f06c7c3a4929b816596df752364d73fe6f73fe.tar.gz
gentoo-keys-c4f06c7c3a4929b816596df752364d73fe6f73fe.tar.bz2
gentoo-keys-c4f06c7c3a4929b816596df752364d73fe6f73fe.zip
testpath: Fix py2man symlink generation
Diffstat (limited to 'testpath')
-rw-r--r--testpath10
1 files changed, 7 insertions, 3 deletions
diff --git a/testpath b/testpath
index e05940a..ad2b09e 100644
--- a/testpath
+++ b/testpath
@@ -32,6 +32,10 @@ ln README.md gkeys-gen/README.md
ln README.md gkeys-ldap/README.md
# Create the py2man symlinks for generating our man pages.
-ln -s py2man gkeys/py2man
-ln -s py2man gkeys-gen/py2man
-ln -s py2man gkeys-ldap/py2man
+cd gkeys
+ln -s ../py2man py2man
+cd ../gkeys-gen
+ln -s ../py2man py2man
+cd ../gkeys-ldap
+ln -s ../py2man py2man
+cd ..