Skip to content

Commit 0f78b68

Browse files
committed
Fix validation: Linux host-agent binaries are in main tarballs
Linux host-agent binaries don't have separate archives - they're included in the main pulse-v*.tar.gz files. Only macOS and Windows have separate archives.
1 parent f5c5b05 commit 0f78b68

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

scripts/validate-release.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ pushd "$RELEASE_DIR" >/dev/null
137137
info "Checking required release assets..."
138138
# NOTE: Standalone binaries are NOT in GitHub releases
139139
# They are only included in Docker images for /download/ endpoints
140+
# NOTE: Linux host-agent binaries are in the main pulse tarballs, not separate archives
140141
required_assets=(
141142
"install.sh"
142143
"checksums.txt"
@@ -148,11 +149,6 @@ required_assets=(
148149
"pulse-v${PULSE_VERSION}-linux-386.tar.gz"
149150
"pulse-host-agent-v${PULSE_VERSION}-darwin-amd64.tar.gz"
150151
"pulse-host-agent-v${PULSE_VERSION}-darwin-arm64.tar.gz"
151-
"pulse-host-agent-v${PULSE_VERSION}-linux-amd64.tar.gz"
152-
"pulse-host-agent-v${PULSE_VERSION}-linux-arm64.tar.gz"
153-
"pulse-host-agent-v${PULSE_VERSION}-linux-armv7.tar.gz"
154-
"pulse-host-agent-v${PULSE_VERSION}-linux-armv6.tar.gz"
155-
"pulse-host-agent-v${PULSE_VERSION}-linux-386.tar.gz"
156152
"pulse-host-agent-v${PULSE_VERSION}-windows-amd64.zip"
157153
"pulse-host-agent-v${PULSE_VERSION}-windows-arm64.zip"
158154
"pulse-host-agent-v${PULSE_VERSION}-windows-386.zip"

0 commit comments

Comments
 (0)