borg/scripts/fetch-binaries

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
674 B
Plaintext
Raw Normal View History

#!/bin/bash
mkdir -p dist/
check_and_copy () {
echo "--- EXE $2 -----------------------------------------------"
vagrant ssh $1 -c "/vagrant/borg/borg.exe -V"
vagrant scp $1:/vagrant/borg/borg.exe dist/$2
echo "--- DIR $2 -----------------------------------------------"
vagrant ssh $1 -c "/vagrant/borg/borg-dir/borg.exe -V"
vagrant scp $1:/vagrant/borg/borg.tgz dist/$2.tgz
echo ""
}
2024-07-03 11:52:42 +00:00
check_and_copy buster borg-linux-glibc228
check_and_copy bullseye borg-linux-glibc231
check_and_copy bookworm borg-linux-glibc236
2024-07-03 11:52:42 +00:00
check_and_copy freebsd13 borg-freebsd13
check_and_copy freebsd14 borg-freebsd14
2024-07-03 11:52:42 +00:00
check_and_copy darwin borg-macos