Fix getRoots typo in nix/clean.sh

Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
This commit is contained in:
Marcus R. Brown 2019-09-12 23:33:03 -07:00 committed by Pedro Pombeiro
parent 5ea8040c56
commit 3545dbb615
No known key found for this signature in database
GPG Key ID: C4A24185B2AA48A1
1 changed files with 1 additions and 1 deletions

View File

@ -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}"