Skip to content

Commit 7c42af6

Browse files
authored
Merge pull request #36 from coollabsio/fix/remove-file-check
Remove gzip file validation check
2 parents ed2dbd4 + f1301c1 commit 7c42af6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

scripts/install.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,6 @@ download_from_github() {
193193
error_exit "Downloaded file is empty"
194194
fi
195195

196-
# Check if file is actually a tar.gz (basic check)
197-
if ! file "$TEMP_FILE" | grep -q "gzip compressed"; then
198-
error_exit "Downloaded file is not a valid gzip archive"
199-
fi
200-
201196
# Create install directory if it doesn't exist (for user install)
202197
if [ "$USER_INSTALL" = true ] && [ ! -d "$install_dir" ]; then
203198
echo "Creating directory: ${install_dir}"

0 commit comments

Comments
 (0)