clarify license situation via unlicense (closes #4)

This commit is contained in:
Matthew Ryan Dillon 2025-04-05 06:32:44 -04:00
parent 931f4ca58e
commit ad2794505a
4 changed files with 28 additions and 3 deletions

View file

@ -35,7 +35,7 @@ if [ -f "$WINDOWS_BIN_PATH" ]; then
WINDOWS_PACKAGE="$OUTPUT_DIR/${PROJECT_NAME}_${VERSION}_windows_x86_64"
mkdir -p "$WINDOWS_PACKAGE"
cp "$WINDOWS_BIN_PATH" "$WINDOWS_PACKAGE/"
cp README.md LICENSE* "$WINDOWS_PACKAGE/" 2>/dev/null || true
cp README.md UNLICENSE* "$WINDOWS_PACKAGE/" 2>/dev/null || true
echo "Creating Windows zip archive..."
(cd "$OUTPUT_DIR" && zip -r "${PROJECT_NAME}_${VERSION}_windows_x86_64.zip" "$(basename "$WINDOWS_PACKAGE")")
@ -56,7 +56,7 @@ if [ -f "$MACOS_BIN_PATH" ]; then
MACOS_PACKAGE="$OUTPUT_DIR/${PROJECT_NAME}_${VERSION}_macos_arm64"
mkdir -p "$MACOS_PACKAGE"
cp "$MACOS_BIN_PATH" "$MACOS_PACKAGE/"
cp README.md LICENSE* "$MACOS_PACKAGE/" 2>/dev/null || true
cp README.md UNLICENSE* "$MACOS_PACKAGE/" 2>/dev/null || true
echo "Creating macOS zip archive..."
(cd "$OUTPUT_DIR" && zip -r "${PROJECT_NAME}_${VERSION}_macos_arm64.zip" "$(basename "$MACOS_PACKAGE")")