]> granicus.if.org Git - curl/commit
maketgz: fix sed issues on OSX
authorMamta Upadhyay <upadhyaym@vmware.com>
Thu, 14 Jun 2018 16:29:43 +0000 (09:29 -0700)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 14 Jun 2018 21:17:38 +0000 (23:17 +0200)
commitcf448436facd28da1bafe031d14a8bc4f165ddaa
tree8feddb038a5f5c9bdad59507f29e8413fecc1aa8
parent351dabbf3dfe1370045a29aa6dba3e0a3686eaeb
maketgz: fix sed issues on OSX

maketgz creates release tarballs and removes the -DEV string in curl
version (e.g. 7.58.0-DEV), else -DEV shows up on command line when curl
is run. maketgz works fine on linux but fails on OSX. Problem is with
the sed commands that use option -i without an extension. Maketgz
expects GNU sed instead of BSD and this simply won't work on OSX. Adding
a backup extension .bak after -i fixes this issue

Running the script as if on OSX gives this error:

sed: -e: No such file or directory

Adding a .bak extension resolves it

Closes #2660
maketgz