Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade to .NET 6 and use docker image that supports both ARM and Intel CPU architectures #48

Merged
merged 2 commits into from
Nov 11, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
feat: fix cert check
  • Loading branch information
bsterne committed Nov 11, 2021
commit 79e967dae4a8e8be1429990d3c027bfa067d80a5
2 changes: 1 addition & 1 deletion scripts/importcert.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if [ "$(uname)" == "Darwin" ]; then
echo "azure-key-vault-emulator certificate already installed"
fi
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
sudo cp local-certs/azure-key-vault-emulator.crt /Library/Keychains/System.keychain local-certs/azure-key-vault-emulator.crt
sudo cp local-certs/azure-key-vault-emulator.crt /usr/local/share/ca-certificates/azure-key-vault-emulator.crt
sudo update-ca-certificates
fi

Expand Down