mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-11 01:41:57 -04:00
binary build scripts: use /bin/sh
there is no bash on some BSDs
This commit is contained in:
parent
331fcb7bfc
commit
44e6ebdcd0
2 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue