Skip to content

Commit

Permalink
Update tower-cli version to v0.10.3 (#51480)
Browse files Browse the repository at this point in the history
* Update tower-cli version to v0.10.3

* Update meta.yaml

* tower-cli: Correct jar path

* Switch to tw-jar.jar
  • Loading branch information
adamrtalbot authored Oct 21, 2024
1 parent 3d49975 commit 5d41cac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions recipes/tower-cli/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{% set name = "tw"%}
{% set version = "0.9.2" %}
{% set sha = "c9ebabdfe7aaeea0ce823c39819b0091503e6e8bf751281f90b620d20d365cec" %}
{% set version = "0.10.3" %}
{% set sha = "fe2aa1fe127196a33527f075ab23526a7fb98c00b152fa6adf32ccbc1802f2cb" %}

package:
name: tower-cli
version: {{ version }}

build:
number: 1
number: 0
noarch: generic
run_exports:
- {{ pin_subpackage("tower-cli", max_pin="x.x") }}

source:
- url: https://github.com/seqeralabs/tower-cli/releases/download/v{{ version }}/tw.jar
- url: https://github.com/seqeralabs/tower-cli/releases/download/v{{ version }}/tw-jar.jar
sha256: {{ sha }}

requirements:
Expand Down
4 changes: 2 additions & 2 deletions recipes/tower-cli/tw.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -eu -o pipefail

export LC_ALL=en_US.UTF-8
jar_file="tw.jar"
jar_file="tw-jar.jar"

# Find original directory of bash script, resolving symlinks
# http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-stored-in/246128#246128
Expand Down Expand Up @@ -61,4 +61,4 @@ if [ "$jvm_mem_opts" == "" ]; then
fi

pass_arr=($pass_args)
eval "$java" $jvm_mem_opts $jvm_prop_opts -jar "$JAR_DIR/$jar_file" $pass_args
eval "$java" $jvm_mem_opts $jvm_prop_opts -jar "$JAR_DIR/$jar_file" $pass_args

0 comments on commit 5d41cac

Please sign in to comment.