1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-02 07:07:46 +00:00

Update make-completions.nu (#232)

command argument is now optional to allow running just `make`
This commit is contained in:
Yethal 2022-05-27 11:11:22 +02:00 committed by GitHub
parent 3f70875f65
commit dcd335f191
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ def "nu-complete make" [] {
} }
export extern "make" [ export extern "make" [
command: string@"nu-complete make" command?: string@"nu-complete make"
--always-make(-B) # Unconditionally make all targets. --always-make(-B) # Unconditionally make all targets.
--directory(-C): string@"nu-complete make dirs" # Change to DIRECTORY before doing anything. --directory(-C): string@"nu-complete make dirs" # Change to DIRECTORY before doing anything.
--debug(-d) # Print various types of debugging information. --debug(-d) # Print various types of debugging information.