zeek/auxil/package-manager/testing/scripts/diff-remove-zkg-version
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

9 lines
187 B
Bash
Executable File

#! /usr/bin/env bash
#
# Suppress lines including our zkg version, based on the VERSION file
# at the toplevel of the source tree.
ver=$(cat $TEST_BASE/../VERSION)
grep -v "$ver"
exit 0