Merge pull request #172946 from Artturin/tester1
This commit is contained in:
commit
ca714e40fb
1 changed files with 12 additions and 3 deletions
|
@ -9,10 +9,19 @@
|
|||
version ? package.version,
|
||||
}: runCommand "${package.name}-test-version" { nativeBuildInputs = [ package ]; meta.timeout = 60; } ''
|
||||
if output=$(${command} 2>&1); then
|
||||
grep -Fw "${version}" - <<< "$output"
|
||||
if grep -Fw "${version}" - <<< "$output"; then
|
||||
touch $out
|
||||
else
|
||||
echo "$output" >&2 && exit 1
|
||||
echo "Version string '${version}' not found!" >&2
|
||||
echo "The output was:" >&2
|
||||
echo "$output" >&2
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo -n ${lib.escapeShellArg command} >&2
|
||||
echo " returned a non-zero exit code." >&2
|
||||
echo "$output" >&2
|
||||
exit 1
|
||||
fi
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue