Fix bash completion on darwin hosts

This commit is contained in:
jhonas 2022-01-23 21:48:53 +01:00
parent 23a7229a4d
commit 04c9e5e772
Signed by: teutat3s
GPG key ID: 924889A86D0B0FEB

View file

@ -122,7 +122,9 @@
extra = '' extra = ''
source ${self.packages.${system}.triton-utils}/bin/triton-docker.env.sh source ${self.packages.${system}.triton-utils}/bin/triton-docker.env.sh
source ${self.packages.${system}.triton-utils}/bin/ttp.sh source ${self.packages.${system}.triton-utils}/bin/ttp.sh
source ${pkgsFork.nodePackages.manta}/share/bash-completion/completions/manta if [ "$(uname)" == "Darwin" ]; then
source $DEVSHELL_DIR/share/bash-completion/bash_completion
fi
''; '';
}; };
}; };