-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
12 changed files
with
52 additions
and
29 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 |
---|---|---|
|
@@ -11,3 +11,4 @@ nixpkgs/inparanoid/*.zip | |
nixpkgs/inparanoid/*.tar.gz | ||
Paths_* | ||
*.lock | ||
release-* |
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
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: ShortCut | |
synopsis: Short, reproducible phylogenomic cuts | ||
author: Jeffrey David Johnson | ||
maintainer: [email protected] | ||
version: 0.9.0 | ||
version: 0.9.1 | ||
license: AGPL-3 | ||
license-file: LICENSE | ||
build-type: Simple | ||
|
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
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
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,26 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Github releases fail to include submodules, so we have to fix them manually. | ||
# Push the release tag, run this, then go to the "edit tag" page on Github and attach the files. | ||
# Usage: ./dev-scripts/build-release-archives.sh <git tag> | ||
|
||
set -E | ||
|
||
tag="$1" | ||
|
||
rm -rf release-${tag} | ||
mkdir release-${tag} | ||
pushd release-${tag} | ||
|
||
git clone http://github.com/jefdaj/shortcut | ||
pushd shortcut | ||
git checkout ${tag} | ||
git submodule update --init --recursive | ||
rm -rf .git* | ||
popd | ||
|
||
tar cvzf shortcut-${tag}.tar.gz shortcut | ||
zip -r shortcut-${tag}.zip shortcut | ||
|
||
echo "release files:" | ||
du -h shortcut-* |
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
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
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
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
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