We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 429e105 commit 2695fe2Copy full SHA for 2695fe2
compose/bin/setup-ssl-ca
@@ -17,15 +17,15 @@ if [ "$(uname)" == "Darwin" ]; then
17
### Check if distribution directory exists
18
DistDirectory="/Applications/Firefox.app/Contents/Resources/distribution"
19
if [ ! -d "$DistDirectory" ]; then
20
- sudo mkdir "$DistDirectory"
+ sudo mkdir -p "$DistDirectory"
21
fi
22
### Move the newly created policies.json to the Certificates directory
23
sudo mv policies.json "$DistDirectory"/policies.json
24
25
### Check if Certificates directory exists
26
CertDirectory="/Library/Application Support/Mozilla/Certificates"
27
if [ ! -d "$CertDirectory" ]; then
28
- sudo mkdir "$CertDirectory"
+ sudo mkdir -p "$CertDirectory"
29
30
31
### Move the newly created .pem to the Certificates directory
0 commit comments