aboutsummaryrefslogtreecommitdiff
path: root/src/fs/test_gnunet_fs_idx.py.in
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2013-08-16 04:08:03 +0000
committerLRN <lrn1986@gmail.com>2013-08-16 04:08:03 +0000
commit16d21a3a2f100e33c2aaeea12a8e4ce41d252507 (patch)
treeaa8e53d1d398d27ee72ac6489e0d080ff5b48057 /src/fs/test_gnunet_fs_idx.py.in
parenta67f39e2f07320d19f3f03d6ca22ae5ee53ea230 (diff)
downloadgnunet-16d21a3a2f100e33c2aaeea12a8e4ce41d252507.tar.gz
gnunet-16d21a3a2f100e33c2aaeea12a8e4ce41d252507.zip
Fix invocation of just-built tools
Diffstat (limited to 'src/fs/test_gnunet_fs_idx.py.in')
-rwxr-xr-xsrc/fs/test_gnunet_fs_idx.py.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fs/test_gnunet_fs_idx.py.in b/src/fs/test_gnunet_fs_idx.py.in
index c7858d9be..0f8343057 100755
--- a/src/fs/test_gnunet_fs_idx.py.in
+++ b/src/fs/test_gnunet_fs_idx.py.in
@@ -32,15 +32,15 @@ if gnunet_pyexpect_dir not in sys.path:
32from gnunet_pyexpect import pexpect 32from gnunet_pyexpect import pexpect
33 33
34if os.name == 'posix': 34if os.name == 'posix':
35 download = 'gnunet-download' 35 download = './gnunet-download'
36 gnunetarm = 'gnunet-arm' 36 gnunetarm = 'gnunet-arm'
37 publish = 'gnunet-publish' 37 publish = './gnunet-publish'
38 unindex = 'gnunet-unindex' 38 unindex = './gnunet-unindex'
39elif os.name == 'nt': 39elif os.name == 'nt':
40 download = 'gnunet-download.exe' 40 download = './gnunet-download.exe'
41 gnunetarm = 'gnunet-arm.exe' 41 gnunetarm = 'gnunet-arm.exe'
42 publish = 'gnunet-publish.exe' 42 publish = './gnunet-publish.exe'
43 unindex = 'gnunet-unindex.exe' 43 unindex = './gnunet-unindex.exe'
44 44
45if os.name == "nt": 45if os.name == "nt":
46 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-idx"), True) 46 shutil.rmtree (os.path.join (os.getenv ("TEMP"), "gnunet-test-fs-py-idx"), True)