aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMicah Wedemeyer2013-11-26 16:48:04 -0500
committerAdam Vandenberg2013-11-26 21:26:59 -0800
commit98f9b9ad48d5f8945c9bb0ef813e14e0fd04707c (patch)
tree93f50357caee223caae26c786960425f4ec64319 /Library/Formula
parent4a39fd85c0e07b3b901cc39ac9a2d1f5d32ce51b (diff)
downloadhomebrew-98f9b9ad48d5f8945c9bb0ef813e14e0fd04707c.tar.bz2
AWS IAM tools: Fix comment
Fix a comment that explains how to set some environment variables that the tool needs in order to start up. The path was incorrect and would cause the tool to error out with a ClassNotFoundException. Closes #24692. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/aws-iam-tools.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/aws-iam-tools.rb b/Library/Formula/aws-iam-tools.rb
index c8d685366..f21ce314f 100644
--- a/Library/Formula/aws-iam-tools.rb
+++ b/Library/Formula/aws-iam-tools.rb
@@ -34,7 +34,7 @@ class AwsIamTools < AmazonWebServicesFormula
* On Zsh, add them to `~/.zprofile` instead.
export JAVA_HOME="$(/usr/libexec/java_home)"
- export AWS_IAM_HOME="#{opt_prefix}/jars"
+ export AWS_IAM_HOME="#{opt_prefix}/libexec"
export AWS_CREDENTIAL_FILE=$HOME/.aws-credentials-master
EOS
end