mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-21 23:33:07 +00:00
f4367d66d8
Also: add macOS version number.
22 lines
678 B
Bash
Executable file
22 lines
678 B
Bash
Executable file
#!/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 ""
|
|
}
|
|
|
|
check_and_copy buster borg-linux-glibc228
|
|
check_and_copy bullseye borg-linux-glibc231
|
|
check_and_copy bookworm borg-linux-glibc236
|
|
|
|
check_and_copy freebsd13 borg-freebsd13
|
|
check_and_copy freebsd14 borg-freebsd14
|
|
|
|
check_and_copy macos1012 borg-macos1012
|