From 932dc843f95dc47886a6be87fd234c8b5a756fb8 Mon Sep 17 00:00:00 2001 From: Tony Tam Date: Sat, 20 Jul 2013 23:12:58 -0700 Subject: [PATCH] updated urls per #75 --- bin/csharp-petstore.sh | 2 +- bin/flash-petstore.sh | 2 +- bin/java-petstore-filemap.sh | 2 +- bin/java-petstore.sh | 2 +- bin/objc-petstore.sh | 2 +- bin/php-petstore.sh | 2 +- bin/python-petstore.sh | 2 +- bin/python3-petstore.sh | 2 +- bin/ruby-petstore.sh | 2 +- bin/scala-petstore.sh | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/bin/csharp-petstore.sh b/bin/csharp-petstore.sh index a923f6bf7b3..df7c23ba4c8 100755 --- a/bin/csharp-petstore.sh +++ b/bin/csharp-petstore.sh @@ -22,7 +22,7 @@ cd $APP_DIR # if you've executed sbt assembly previously it will use that instead. export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" -ags="$@ samples/client/petstore/csharp/CsharpPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs.json special-key" +ags="$@ samples/client/petstore/csharp/CsharpPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs special-key" if [ -f $APP_DIR/target/scala-2.9.1/swagger-codegen.jar ]; then scala -cp target/scala-2.9.1/swagger-codegen.jar $ags diff --git a/bin/flash-petstore.sh b/bin/flash-petstore.sh index 98594b00dcd..a5ef38dbe1b 100755 --- a/bin/flash-petstore.sh +++ b/bin/flash-petstore.sh @@ -22,7 +22,7 @@ cd $APP_DIR # if you've executed sbt assembly previously it will use that instead. export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties -DfileMap=samples/client/wordnik-api/spec-files" -ags="$@ samples/client/petstore/flash/FlashPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs.json special-key" +ags="$@ samples/client/petstore/flash/FlashPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs special-key" if [ -f $APP_DIR/target/scala-2.9.1/swagger-codegen.jar ]; then scala -cp target/scala-2.9.1/swagger-codegen.jar $ags diff --git a/bin/java-petstore-filemap.sh b/bin/java-petstore-filemap.sh index 1923f170e95..c3cf021f665 100755 --- a/bin/java-petstore-filemap.sh +++ b/bin/java-petstore-filemap.sh @@ -22,7 +22,7 @@ cd $APP_DIR # if you've executed sbt assembly previously it will use that instead. export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" -ags="$@ samples/client/petstore/java/JavaPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs.json special-key" +ags="$@ samples/client/petstore/java/JavaPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs special-key" if [ -f $APP_DIR/target/scala-2.9.1/swagger-codegen.jar ]; then scala -cp target/scala-2.9.1/swagger-codegen.jar $ags diff --git a/bin/java-petstore.sh b/bin/java-petstore.sh index 1923f170e95..c3cf021f665 100755 --- a/bin/java-petstore.sh +++ b/bin/java-petstore.sh @@ -22,7 +22,7 @@ cd $APP_DIR # if you've executed sbt assembly previously it will use that instead. export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" -ags="$@ samples/client/petstore/java/JavaPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs.json special-key" +ags="$@ samples/client/petstore/java/JavaPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs special-key" if [ -f $APP_DIR/target/scala-2.9.1/swagger-codegen.jar ]; then scala -cp target/scala-2.9.1/swagger-codegen.jar $ags diff --git a/bin/objc-petstore.sh b/bin/objc-petstore.sh index 180975f1975..aa60d23660a 100755 --- a/bin/objc-petstore.sh +++ b/bin/objc-petstore.sh @@ -22,7 +22,7 @@ cd $APP_DIR # if you've executed sbt assembly previously it will use that instead. export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" -ags="$@ samples/client/petstore/objc/ObjcPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs.json special-key" +ags="$@ samples/client/petstore/objc/ObjcPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs special-key" if [ -f $APP_DIR/target/scala-2.9.1/swagger-codegen.jar ]; then scala -cp target/scala-2.9.1/swagger-codegen.jar $ags diff --git a/bin/php-petstore.sh b/bin/php-petstore.sh index 27498251a68..a51b38062a0 100755 --- a/bin/php-petstore.sh +++ b/bin/php-petstore.sh @@ -22,7 +22,7 @@ cd $APP_DIR # if you've executed sbt assembly previously it will use that instead. export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" -ags="$@ samples/client/petstore/php/PHPPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs.json special-key" +ags="$@ samples/client/petstore/php/PHPPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs special-key" if [ -f $APP_DIR/target/scala-2.9.1/swagger-codegen.jar ]; then scala -cp target/scala-2.9.1/swagger-codegen.jar $ags diff --git a/bin/python-petstore.sh b/bin/python-petstore.sh index 0209a06ee3b..e6539915248 100755 --- a/bin/python-petstore.sh +++ b/bin/python-petstore.sh @@ -22,7 +22,7 @@ cd $APP_DIR # if you've executed sbt assembly previously it will use that instead. export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" -ags="$@ samples/client/petstore/python/PythonPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs.json special-key" +ags="$@ samples/client/petstore/python/PythonPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs special-key" if [ -f $APP_DIR/target/scala-2.9.1/swagger-codegen.jar ]; then scala -cp target/scala-2.9.1/swagger-codegen.jar $ags diff --git a/bin/python3-petstore.sh b/bin/python3-petstore.sh index 70faa7ca20e..a0c027857b6 100755 --- a/bin/python3-petstore.sh +++ b/bin/python3-petstore.sh @@ -22,7 +22,7 @@ cd $APP_DIR # if you've executed sbt assembly previously it will use that instead. export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" -ags="$@ samples/client/petstore/python3/Python3PetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs.json special-key" +ags="$@ samples/client/petstore/python3/Python3PetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs special-key" if [ -f $APP_DIR/target/scala-2.9.1/swagger-codegen.jar ]; then scala -cp target/scala-2.9.1/swagger-codegen.jar $ags diff --git a/bin/ruby-petstore.sh b/bin/ruby-petstore.sh index d29ac329858..9a5dd87090f 100755 --- a/bin/ruby-petstore.sh +++ b/bin/ruby-petstore.sh @@ -22,7 +22,7 @@ cd $APP_DIR # if you've executed sbt assembly previously it will use that instead. export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" -ags="$@ samples/client/petstore/ruby/RubyPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs.json special-key" +ags="$@ samples/client/petstore/ruby/RubyPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs special-key" if [ -f $APP_DIR/target/scala-2.9.1/swagger-codegen.jar ]; then scala -cp target/scala-2.9.1/swagger-codegen.jar $ags diff --git a/bin/scala-petstore.sh b/bin/scala-petstore.sh index 6a8b0057bbe..ff04f1ad483 100755 --- a/bin/scala-petstore.sh +++ b/bin/scala-petstore.sh @@ -22,7 +22,7 @@ cd $APP_DIR # if you've executed sbt assembly previously it will use that instead. export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" -ags="$@ samples/client/petstore/scala/ScalaPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs.json special-key" +ags="$@ samples/client/petstore/scala/ScalaPetstoreCodegen.scala http://petstore.swagger.wordnik.com/api/api-docs special-key" if [ -f $APP_DIR/target/scala-2.9.1/swagger-codegen.jar ]; then scala -cp target/scala-2.9.1/swagger-codegen.jar $ags