Skip to content

Commit 6ccce75

Browse files
fix CLI flag for base64 decoding
1 parent 3820e27 commit 6ccce75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/run-kerberos-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ set +o verbose
1616
if [[ "$OSTYPE" == "darwin"* ]]; then
1717
echo ${KEYTAB_BASE64_AES} | base64 -D >"$(pwd)/.evergreen/drivers.keytab"
1818
else
19-
echo ${KEYTAB_BASE64_AES} | base64 -D >"$(pwd)/.evergreen/drivers.keytab"
19+
echo ${KEYTAB_BASE64_AES} | base64 -d >"$(pwd)/.evergreen/drivers.keytab"
2020
fi
2121
echo "Running kdestroy"
2222
kdestroy -A

0 commit comments

Comments
 (0)