We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aec937b commit ebf8439Copy full SHA for ebf8439
extensions/options.nix
@@ -16,7 +16,7 @@ let
16
package = pkgs.mkcert;
17
command = ''
18
echo "$(tput bold)Installing ${name}'s dev CA into local trust stores via mkcert command ...$(tput sgr0)"
19
- export CAROOT=${dev-ca-path}
+ export CAROOT=$DEVSHELL_ROOT${dev-ca-path}
20
${pkgs.mkcert}/bin/mkcert -install
21
'';
22
};
@@ -27,7 +27,7 @@ let
27
28
29
echo "$(tput bold)Purging ${name}'s dev CA from local trust stores via mkcert command ...$(tput sgr0)"
30
31
${pkgs.mkcert}/bin/mkcert -uninstall
32
33
@@ -116,4 +116,5 @@ in
116
else [ installProjectCA uninstallProjectCA ]
117
);
118
119
+ bash.extra = "export CAROOT=$DEVSHELL_ROOT/${dev-ca-path}";
120
}
0 commit comments