nix(feat): Add argbash bash completion support
This commit is contained in:
committed by
Wolfgang Walther
parent
c2df7d8198
commit
2559d32912
+10
-4
@@ -124,8 +124,14 @@ let
|
||||
|
||||
[ "$responseCode" -eq 200 ]
|
||||
'';
|
||||
|
||||
tools = [ github dockerLogin dockerHub dockerHubDescription ];
|
||||
|
||||
bashCompletion = builtins.map (tool: tool.bashCompletion) tools;
|
||||
|
||||
in
|
||||
buildEnv {
|
||||
name = "postgrest-release";
|
||||
paths = [ github.bin dockerLogin.bin dockerHub.bin dockerHubDescription.bin ];
|
||||
}
|
||||
buildEnv
|
||||
{
|
||||
name = "postgrest-release";
|
||||
paths = builtins.map (tool: tool.bin) tools;
|
||||
} // { inherit bashCompletion; }
|
||||
|
||||
Reference in New Issue
Block a user