mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 21:43:09 +00:00
11 lines
202 B
Python
11 lines
202 B
Python
import sys
|
|
|
|
from allmydata.util import find_exe
|
|
|
|
if __name__ == "__main__":
|
|
cmd = find_exe.find_exe("trial")
|
|
if cmd:
|
|
print " ".join(cmd).replace("\\", "/")
|
|
else:
|
|
sys.exit(1)
|