This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| _________________ | |
| < HELLO GIST FANS > | |
| ----------------- | |
| \ ^__^ | |
| \ (oo)\_______ | |
| (__)\ )\/\ | |
| ||----w | | |
| || || |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -eu | |
| for file in "$@"; do | |
| failed=0 | |
| dir=$(dirname ${file}) | |
| if ! cmp -s <(terraform-docs md ${dir}) "${dir}/README.md"; then | |
| echo "Need to update Terraform docs for: " | |
| echo "${dir}" | |
| echo "Run: terraform-docs md ${dir} > ${dir}/README.md" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| From: /Users/paulmartin/.bundle/ruby/2.0.0/gems/fog-1.33.0/lib/fog/vcloud_director/requests/compute/get_execute_query.rb @ line 84 Fog::Compute::VcloudDirector::Real#get_execute_query: | |
| 79: else | |
| 80: query = { | |
| 81: :type => type, | |
| 82: } | |
| 83: if query[:type] == 'task' | |
| => 84: require 'pry'; binding.pry | |
| 85: end | |
| 86: |