From 2fac46b60625d99befa6bc31d9d668635faae98f Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 27 Apr 2021 16:43:44 +0000 Subject: [PATCH] pkgs: diff-flake: fix '--flake-output' handling I'm surprised that `shellcheck` did not pick up this error, `INPUTS` was leftover from the previous name of the variable before a refactor... --- pkgs/diff-flake/diff-flake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/diff-flake/diff-flake b/pkgs/diff-flake/diff-flake index b93c975..321a9b1 100755 --- a/pkgs/diff-flake/diff-flake +++ b/pkgs/diff-flake/diff-flake @@ -53,7 +53,7 @@ parse_args() { exit ;; -f|--flake-output) - INPUTS+="$1" + FLAKE_OUTPUTS+=("$1") shift ;; -o|--output)