Skip to content

Commit

Permalink
fixed echo cat
Browse files Browse the repository at this point in the history
  • Loading branch information
michal-dagan committed Oct 26, 2023
1 parent 1dce18b commit 4e6a301
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Tests/Marketplace/install_packs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ if [[ ! -f "$GCS_MARKET_KEY" ]]; then
fi

if [ -n "${CLOUD_API_KEYS}" ]; then
echo "${CLOUD_API_KEYS}" > "cloud_api_keys.json"
if [ "${TEST_XDR_ENV}" == "true" ]; then
cat "${CLOUD_API_KEYS}" > "cloud_api_keys.json"
else
echo "${CLOUD_API_KEYS}" > "cloud_api_keys.json"
fi
fi

echo "Trying to authenticate with GCS..."
Expand Down

0 comments on commit 4e6a301

Please sign in to comment.