-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d5687dd
commit 5cd44d6
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.git* export-ignore | ||
test export-ignore | ||
makesrcdist export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
# | ||
# makesrcdist - make a source distribution of RasterView. | ||
# | ||
|
||
if test $# != 1; then | ||
echo "Usage: makesrcdist version" | ||
exit 1 | ||
fi | ||
|
||
version=$1 | ||
|
||
echo Creating tag for release... | ||
git tag -m "Tag $version" v$version | ||
git push origin v$version | ||
|
||
echo Creating rasterview-$version.tar.gz... | ||
git archive --format tar HEAD | gzip -v9 >rasterview-$version.tar.gz |