mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 16:02:14 +00:00
9 lines
162 B
Bash
Executable File
9 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
set -eou pipefail
|
|
script_dirpath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
${script_dirpath}/build.jsr.sh
|
|
|
|
args=${1:-}
|
|
|
|
npx jsr publish ${args}
|