From 09830187e19b6ea9d22e1828fb8a7dc706d33238 Mon Sep 17 00:00:00 2001 From: Robert Haschke Date: Sun, 2 Jun 2024 13:43:48 +0200 Subject: [PATCH] Fix staging --- reprepro-stage.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reprepro-stage.sh b/reprepro-stage.sh index 88b66c9d..09bd77b8 100755 --- a/reprepro-stage.sh +++ b/reprepro-stage.sh @@ -12,6 +12,7 @@ fi # Move packages from build to production stage pkgs=$(reprepro list "$DISTRO-build" | grep -v "|source" | cut -s -d " " -f 2) -reprepro copy "$DISTRO" "$DISTRO-build" "$pkgs" +# shellcheck disable=SC2086 +reprepro copy "$DISTRO" "$DISTRO-build" $pkgs # reprepro remove "$DISTRO-build" "$pkgs"