Skip to content

Commit dd34ca3

Browse files
fixed temp file creation
1 parent c2da030 commit dd34ca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/sap_automation_qa.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ retrieve_secret_from_key_vault() {
187187
fi
188188

189189
# Create the temporary file and write the secret value to it
190-
echo "$secret_value" > "$temp_file" > /dev/null
190+
echo "$secret_value" > "$temp_file"
191191
chmod 600 "$temp_file" # Set the correct permissions for the file
192192
if [[ ! -s "$temp_file" ]]; then
193193
log "ERROR" "Failed to store the retrieved secret in the temporary file."

0 commit comments

Comments
 (0)