mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 22:43:01 +00:00
Merge pull request #334995 from pbsds/fix-test-version-1723771306
This commit is contained in:
commit
bc0fb46cd2
@ -67,7 +67,7 @@
|
|||||||
command ? "${package.meta.mainProgram or package.pname or package.name} --version",
|
command ? "${package.meta.mainProgram or package.pname or package.name} --version",
|
||||||
version ? package.version,
|
version ? package.version,
|
||||||
}: runCommand "${package.name}-test-version" { nativeBuildInputs = [ package ]; meta.timeout = 60; } ''
|
}: runCommand "${package.name}-test-version" { nativeBuildInputs = [ package ]; meta.timeout = 60; } ''
|
||||||
if output=$(${command} 2>&1); then
|
if output=$(${command} 2>&1 | sed -e 's|${builtins.storeDir}/[^/ ]*/|{{storeDir}}/|g'); then
|
||||||
if grep -Fw -- "${version}" - <<< "$output"; then
|
if grep -Fw -- "${version}" - <<< "$output"; then
|
||||||
touch $out
|
touch $out
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user