Apply suggestions from code review

Co-authored-by: Mathias Fredriksson <mafredri@gmail.com>
pull/140/head
Muhammad Atif Ali 1 year ago committed by GitHub
parent 6bd0e1ebbd
commit 3d35e45621
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -86,13 +86,13 @@ install() {
TMP=$(mktemp -d)
if ! (
cd $TMP
cd "$TMP"
install
); then
echo "Failed to install Vault CLI."
exit 1
fi
rm -rf $TMP
rm -rf "$TMP"
# Authenticate with Vault
printf "🔑 Authenticating with Vault ...\n\n"

@ -84,10 +84,10 @@ install() {
TMP=$(mktemp -d)
if ! (
cd $TMP
cd "$TMP"
install
); then
echo "Failed to install Vault CLI."
exit 1
fi
rm -rf $TMP
rm -rf "$TMP"

Loading…
Cancel
Save