Merge pull request #9729 from ThomasWaldmann/binary-building2-master
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.8) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions

binary build scripts: use /bin/sh
This commit is contained in:
TW 2026-06-07 16:01:12 +02:00 committed by GitHub
commit e788eed0be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
#!/bin/bash
#!/bin/sh
# Generate a single-file binary of borgbackup using Nuitka.
set -euo pipefail
set -eu
OUTPUT_DIR="dist/binary"
OUTPUT_FILENAME="borg-nuitka.exe" # .exe does NOT mean windows here

View file

@ -1,7 +1,7 @@
#!/bin/bash
#!/bin/sh
# Generate a single-file binary of borgbackup using PyInstaller.
set -euo pipefail
set -eu
OUTPUT_DIR="dist/binary"
SPEC_FILE="scripts/borg.exe.spec"