Skip to content

Commit

Permalink
Merge pull request #82 from CCBR/issue81
Browse files Browse the repository at this point in the history
issue81
  • Loading branch information
kopardev authored Feb 14, 2024
2 parents bb45277 + a101471 commit c9ede68
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

### Bug fixes

## spacesavers2 0.11.2

### New features

- `spacesavers2_e2e` has a new `-v` or `--version` argument to print version of spacesavers2 being used

## spacesavers2 0.11.1

### New features
Expand Down
10 changes: 10 additions & 0 deletions spacesavers2_e2e
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ set -e -o pipefail

SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )

# printing version
if [ $# -eq 1 ];then
case $1 in
-v|--version)
spacesavers2_catalog --version
exit 0
esac
fi

# ncpus=`nproc`

ARGPARSE_DESCRIPTION="End-to-end run of spacesavers2"
Expand All @@ -17,6 +26,7 @@ parser.add_argument('-d','--maxdepth',required=False, help='maxdepth for mimeo (
parser.add_argument('-l','--limit',required=False, help='limit for running spacesavers_grubbers (default 5)', default=5)
parser.add_argument('-q','--quota',required=False, help='total size of the volume (default = 200 for /data/CCBR)', default=200)
parser.add_argument('-o','--outfolder',required=True, help='Folder where all spacesavers_e2e output files will be saved')
parser.add_argument('-v','--version',required=False, action='store_true', help='print version')
EOF

# assuming that python 3.11 is available with xxhash module
Expand Down
2 changes: 1 addition & 1 deletion src/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.1
0.11.2

0 comments on commit c9ede68

Please sign in to comment.