feat(git-commit-signing): check for git and jq

pull/94/head
Phorcys 2 years ago
parent 8f32c34eb5
commit ebf0bf1b54
No known key found for this signature in database

@ -1,5 +1,15 @@
#!/usr/bin/env sh #!/usr/bin/env sh
if ! command -v git > /dev/null; then
echo "git is not installed"
exit 1
fi
if ! command -v jq > /dev/null; then
echo "jq is not installed"
exit 1
fi
mkdir -p ~/.ssh mkdir -p ~/.ssh
echo "Downloading SSH key" echo "Downloading SSH key"

Loading…
Cancel
Save