From 23826b0224a8da5f0452d3921b66f538d99186b7 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Wed, 23 Mar 2016 02:32:48 -0700 Subject: [PATCH] fix OS-X package version I changed the quotes in _version.py, and this script was sensitive to them. --- misc/build_helpers/build-osx-pkg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/build_helpers/build-osx-pkg.sh b/misc/build_helpers/build-osx-pkg.sh index 253d0c23c..89cf5b908 100755 --- a/misc/build_helpers/build-osx-pkg.sh +++ b/misc/build_helpers/build-osx-pkg.sh @@ -1,6 +1,6 @@ #!/bin/sh -VERSION=`sh -c "cat src/allmydata/_version.py | grep verstr | head -n 1 | cut -d' ' -f 3" | sed "s/'//g"` +VERSION=`sh -c "cat src/allmydata/_version.py | grep verstr | head -n 1 | cut -d' ' -f 3" | sed "s/\"//g"` PWD=`pwd` TARGET="/Applications/tahoe.app"