Skip to content

Commit cfa199c

Browse files
committed
/src/curl/release.sh: make sure to cd to the correct directory first
The release script can actually be run from anywhere, but it assumes that it runs in /src/curl. Otherwise, the patches are not found, and the downloaded archive and the unpacked directory are not ignored properly by Git. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent db43daf commit cfa199c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/curl/release.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/sh
22

3+
cd "$(dirname "$0")"
4+
35
VERSION=7.19.5
46
DIR=curl-$VERSION
57
URL=http://curl.haxx.se/download/$DIR.tar.bz2

0 commit comments

Comments
 (0)