mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
* build: new pipeline, new way to cross-compile and build docker images locally. (#3383) * build: use alternative repositories * build: fix * build: validate taglib downloads * build: control concurrency * build: validate xx version * build: remove taglib download validation as the version can be changed as an argument.
16 lines
No EOL
446 B
Bash
Executable file
16 lines
No EOL
446 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Use sed to extract the value of the -o parameter
|
|
output=$(echo "$@" | sed -n 's/.*-o \([^ ]*\).*/\1/p')
|
|
|
|
# Ensure the directory part of the output exists
|
|
mkdir -p "$(dirname "$output")"
|
|
|
|
# Build the source folder name based on GOOS, GOARCH and GOARM.
|
|
source="${GOOS}_${GOARCH}"
|
|
if [ "$GOARCH" = "arm" ]; then
|
|
source="${source}_${GOARM}"
|
|
fi
|
|
|
|
# Copy the output to the desired location
|
|
cp binaries/"${source}"/navidrome* "$output" |