aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Kim2014-04-28 14:45:16 -0700
committerAdam Vandenberg2014-04-28 20:33:58 -0700
commit4b8f749e6d8f797c66874efd5e24bd5b211f1e3c (patch)
tree0ac9c0ff56bb2e71788a7f76fb2973d7f24a9cd9
parent7d1c149878e75aa1ade8af40c7fe35af66cc6631 (diff)
downloadhomebrew-4b8f749e6d8f797c66874efd5e24bd5b211f1e3c.tar.bz2
dynamodb-local: pass-through command-line arguments
Closes #28816. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/dynamodb-local.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/dynamodb-local.rb b/Library/Formula/dynamodb-local.rb
index 1f5b2a33a..4ad14caa7 100644
--- a/Library/Formula/dynamodb-local.rb
+++ b/Library/Formula/dynamodb-local.rb
@@ -16,7 +16,7 @@ class DynamodbLocal < Formula
def bin_wrapper; <<-EOS.undent
#!/bin/sh
- cd #{data_path} && java -Djava.library.path=#{libexec}/DynamodbLocal_lib -jar #{libexec}/DynamoDBLocal.jar
+ cd #{data_path} && java -Djava.library.path=#{libexec}/DynamodbLocal_lib -jar #{libexec}/DynamoDBLocal.jar "$@"
EOS
end