1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-08-01 12:37:46 +00:00

Fix completer

This commit is contained in:
RGBCube 2023-12-03 13:15:31 +03:00
parent e167c519df
commit 16a47152fd
No known key found for this signature in database

View file

@ -1,7 +1,11 @@
#!/usr/bin/env nu #!/usr/bin/env nu
def complete [] {
ls machines
}
def main [ def main [
machine: string@"ls machines" = "" # The machine to build. machine: string@complete = "" # The machine to build.
--no-trace # Wheter to not show the full trace. --no-trace # Wheter to not show the full trace.
] { ] {
mut machine_ = $machine mut machine_ = $machine