From 0a1c04db3625608522dba98bc4d2a070853cdd1a Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Thu, 2 Feb 2023 12:01:11 +0100 Subject: [PATCH] contrib: fixup patching in Guix build script --- contrib/reproducible/guix/guix-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/reproducible/guix/guix-build.sh b/contrib/reproducible/guix/guix-build.sh index 128cbcc6..ed62283a 100755 --- a/contrib/reproducible/guix/guix-build.sh +++ b/contrib/reproducible/guix/guix-build.sh @@ -63,7 +63,7 @@ for project_folder in "" "gui"; do PROJECT_PATCHES_ROOT="$PWD/contrib/reproducible/guix/patches/$project_folder" project_needs_patches() { - test $(ls -A1q "$PROJECT_PATCHES_ROOT" |grep patch) + test "$(ls -A1q "$PROJECT_PATCHES_ROOT" |grep patch)" } maybe_create_dir "$PROJECT_OUT_DIR"