From: Daira Hopwood Date: Mon, 13 Oct 2014 16:27:47 +0000 (+0100) Subject: Fix mistake in refactoring of test-osx-pkg.py. X-Git-Url: https://git.rkrishnan.org/(%5B%5E?a=commitdiff_plain;h=779ee073feda80211d80bf1c3dc309844c88ea78;p=tahoe-lafs%2Ftahoe-lafs.git Fix mistake in refactoring of test-osx-pkg.py. Signed-off-by: Daira Hopwood --- diff --git a/misc/build_helpers/test-osx-pkg.py b/misc/build_helpers/test-osx-pkg.py index 8d15a451..04dcef66 100644 --- a/misc/build_helpers/test-osx-pkg.py +++ b/misc/build_helpers/test-osx-pkg.py @@ -64,12 +64,12 @@ def test_osx_pkg(pkgfile): try: basedir = os.getcwd() - cmd = ['bin/' + appname, '--version-and-path'] + cmd = ['bin/tahoe', '--version-and-path'] callit = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) rc = callit.wait() if rc != 0: - raise Exception("FAIL: $appname --version-and-path returned non-zero exit code: %r" % (rc,)) + raise Exception("FAIL: '%s' returned non-zero exit code: %r" % (" ".join(cmd), rc)) stdouttxt = callit.stdout.read() PKG_VER_PATH_RE=re.compile("^(\S+): ([^\(]+)\((.+?)\)$", re.UNICODE)