Skip to content

Commit 064438f

Browse files
committed
fix
1 parent 9d405d1 commit 064438f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

usr/bin/gpg-dearmor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ set -o errtrace
88
set -o nounset
99
set -o pipefail
1010

11-
source_file="$1"
12-
target_file="$2"
11+
source_file="${1-}"
12+
target_file="${2-}"
1313

1414
if [ "$source_file" = "" ] || [ "$target_file" = "" ]; then
1515
printf '%s\n' "$0: ERROR: syntax: $0 source-file target-file" >&2

0 commit comments

Comments
 (0)