From 3545dbb615ee365d24986c9aaf12a54a4bbbe516 Mon Sep 17 00:00:00 2001 From: "Marcus R. Brown" Date: Thu, 12 Sep 2019 23:33:03 -0700 Subject: [PATCH] Fix getRoots typo in nix/clean.sh Signed-off-by: Pedro Pombeiro --- nix/clean.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/clean.sh b/nix/clean.sh index dd006079c0..ad2db9770d 100755 --- a/nix/clean.sh +++ b/nix/clean.sh @@ -9,7 +9,7 @@ function getSources() { nix-store --query --binding src "${1}"; } function getOutputs() { nix-store --query --outputs "${1}"; } function getDrvFiles() { nix-store --query --deriver "${1}"; } function getReferrers() { nix-store --query --referrers "${1}"; } -function getRoots() { nix-store --query --roots ${1} } +function getRoots() { nix-store --query --roots "${1}"; } function findRelated() { path="${1}"