quintodrome/release/xxgo

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

19 lines
624 B
Text
Raw Normal View History

#!/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
# GOARM is bare ("5", "6", "7"); the Docker build output uses a "v" prefix
# (e.g. linux_arm_v5), so add it back here to match.
source="${source}_v${GOARM}"
fi
# Copy the output to the desired location
chmod +x binaries/"${source}"/navidrome*
cp binaries/"${source}"/navidrome* "$output"