Fix getRoots typo in nix/clean.sh
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
This commit is contained in:
parent
5ea8040c56
commit
3545dbb615
|
@ -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}"
|
||||
|
|
Loading…
Reference in New Issue