Skip to content

Commit

Permalink
Merge pull request #76 from pafcloud/carnyst-patch-1
Browse files Browse the repository at this point in the history
Make grep command a bit less specific
  • Loading branch information
carnyst authored Sep 6, 2024
2 parents d9f2e0f + 5ceab37 commit 63fa3bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-terragrunt/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ runs:
exit_code="$?"
if [ "$exit_code" = "0" ]; then
temp_file="$(mktemp /tmp/terragrunt-output.XXXXXXXX.tmp)"
grep -v "Refreshing state...\|Reading...\|Preparing import...\|Read complete after\|Downloading Terraform configurations from file" $output_file > $temp_file
grep -v "Refreshing state...\|Reading...\|Preparing import...\|Read complete after\|Downloading Terraform configurations from" $output_file > $temp_file
mv $temp_file $output_file
fi
set -e
Expand Down

0 comments on commit 63fa3bd

Please sign in to comment.