mirror of
https://github.com/syncthing/release-tools.git
synced 2026-05-08 09:02:26 +00:00
15 lines
247 B
Bash
Executable File
15 lines
247 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
pushd "$1"
|
|
|
|
ver=(syncthing-linux-amd64-*.tar.gz)
|
|
ver="${ver#syncthing-linux-amd64-}"
|
|
ver="${ver%.tar.gz}"
|
|
echo Release version $ver
|
|
|
|
echo *.asc *.tar.gz *.zip | xargs -n1 -P4 relup syncthing/syncthing "$ver"
|
|
|
|
popd
|
|
|