9 lines
187 B
Bash
Executable File
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
|