mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-06-01 23:30:53 +00:00
strip the single quotes around $VERSION
Without stripping the single quotes, the generated pagkage filename also has the undesired single quotes around the version string. (eg: tahoe-lafs-'1.10.0.post309'-osx.pkg).
This commit is contained in:
parent
0bd2444c93
commit
c88deb40ba
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
APPNAME=$1
|
APPNAME=$1
|
||||||
VERSION=`sh -c "cat src/allmydata/_version.py | grep verstr | head -n 1 | cut -d' ' -f 3"`
|
VERSION=`sh -c "cat src/allmydata/_version.py | grep verstr | head -n 1 | cut -d' ' -f 3" | sed "s/'//g"`
|
||||||
PWD=`pwd`
|
PWD=`pwd`
|
||||||
|
|
||||||
# The editing of allmydata-tahoe.egg-link and easy-install.pth files
|
# The editing of allmydata-tahoe.egg-link and easy-install.pth files
|
||||||
|
Loading…
x
Reference in New Issue
Block a user