mirror of
https://github.com/gaschz/dotfiles.git
synced 2025-03-01 14:22:33 +01:00
17 lines
361 B
Bash
Executable File
17 lines
361 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
##
|
|
## SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
set -eu
|
|
|
|
gpg_cmd="$(has -s qubes-gpg-client-wrapper gpg2 gpg)"
|
|
|
|
if test -z "$gpg_cmd"; then
|
|
printf '%s\n' "Please install one of the following tools: qubes-gpg-client-wrapper, gpg2 or gpg."
|
|
exit 1
|
|
fi
|
|
|
|
"$gpg_cmd" "$@"
|