summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2022-05-21 18:01:09 +0200
committerGitHub <noreply@github.com>2022-05-21 18:01:09 +0200
commitc9063b89075aea1e78f3cfbed262c08035b2764d (patch)
treeefeaf162d3c6cba79745b4a539ae0a810d6c98eb /pkgs/tools
parent1caa263b728503d48931a16f46bb956f1b4cb52c (diff)
parente2ae9005abe738fc01dbbc2278d0086b36c9ee62 (diff)
Merge pull request #173892 from gebner/fixbeetsminimal
beets: correctly ignore tests
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/audio/beets/common.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/audio/beets/common.nix b/pkgs/tools/audio/beets/common.nix
index 3c7ad800c3b7..d5883f3cdbd1 100644
--- a/pkgs/tools/audio/beets/common.nix
+++ b/pkgs/tools/audio/beets/common.nix
@@ -126,7 +126,7 @@ python3Packages.buildPythonApplication rec {
eval "disabledTestPaths=($disabledTestPaths)"
for path in ''${disabledTestPaths[@]}; do
if [ -e "$path" ]; then
- args+=" --ignore \"$path\""
+ args+=" --ignore $path"
else
echo "Skipping non-existent test path '$path'"
fi