From f0b762536c8767859d26fa1853169d8287e0e5cd Mon Sep 17 00:00:00 2001 From: Ryan Stelly Date: Tue, 17 Jan 2017 17:16:38 -0600 Subject: [PATCH 1/4] fix casing of dotnet artifact --- lib/plugins/create/templates/aws-csharp/serverless.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/create/templates/aws-csharp/serverless.yml b/lib/plugins/create/templates/aws-csharp/serverless.yml index 7917d937d..bd10eac21 100644 --- a/lib/plugins/create/templates/aws-csharp/serverless.yml +++ b/lib/plugins/create/templates/aws-csharp/serverless.yml @@ -46,7 +46,7 @@ provider: # you can add packaging information here package: - artifact: bin/Release/netcoreapp1.0/publish/deploy-package.zip + artifact: bin/release/netcoreapp1.0/publish/deploy-package.zip # exclude: # - exclude-me.js # - exclude-me-dir/** From fa7886a68e4f3529e92cd1954edd43f816387dfd Mon Sep 17 00:00:00 2001 From: Ryan Stelly Date: Tue, 17 Jan 2017 17:28:58 -0600 Subject: [PATCH 2/4] fix casing of docs version of exampl .yml (which may not be used for anything?) --- docs/providers/aws/examples/hello-world/csharp/serverless.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/providers/aws/examples/hello-world/csharp/serverless.yml b/docs/providers/aws/examples/hello-world/csharp/serverless.yml index f35b67f44..d0c88fae9 100644 --- a/docs/providers/aws/examples/hello-world/csharp/serverless.yml +++ b/docs/providers/aws/examples/hello-world/csharp/serverless.yml @@ -46,7 +46,7 @@ provider: # you can add packaging information here package: - artifact: bin/Release/netcoreapp1.0/publish/deploy-package.zip + artifact: bin/release/netcoreapp1.0/publish/deploy-package.zip # exclude: # - exclude-me.js # - exclude-me-dir/** From 383a4a0ec3d1f7fcefed95001463cad2380b4a20 Mon Sep 17 00:00:00 2001 From: Ryan Stelly Date: Tue, 17 Jan 2017 17:31:46 -0600 Subject: [PATCH 3/4] fix release casing in test_all_templates --- tests/templates/test_all_templates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/templates/test_all_templates b/tests/templates/test_all_templates index 473d5b981..d1a1f2d93 100755 --- a/tests/templates/test_all_templates +++ b/tests/templates/test_all_templates @@ -8,7 +8,7 @@ function integration-test { $DIR/integration-test-template $@ } -integration-test aws-csharp 'apt-get -qq update && apt-get -qq -y install zip && dotnet restore && dotnet publish -c release && pushd bin/Release/netcoreapp1.0/publish && zip -r ./deploy-package.zip ./* && popd' +integration-test aws-csharp 'apt-get -qq update && apt-get -qq -y install zip && dotnet restore && dotnet publish -c release && pushd bin/release/netcoreapp1.0/publish && zip -r ./deploy-package.zip ./* && popd' integration-test aws-java-gradle ./gradlew build integration-test aws-java-maven mvn package integration-test aws-scala-sbt sbt assembly From f599977bb27bab90f3c31b4e1136cd7e0a03d41d Mon Sep 17 00:00:00 2001 From: Philipp Muens Date: Wed, 18 Jan 2017 09:37:33 +0100 Subject: [PATCH 4/4] Fix serverless.yml indentations --- docs/providers/aws/examples/hello-world/csharp/serverless.yml | 2 +- lib/plugins/create/templates/aws-csharp/serverless.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/providers/aws/examples/hello-world/csharp/serverless.yml b/docs/providers/aws/examples/hello-world/csharp/serverless.yml index d0c88fae9..4f8212227 100644 --- a/docs/providers/aws/examples/hello-world/csharp/serverless.yml +++ b/docs/providers/aws/examples/hello-world/csharp/serverless.yml @@ -46,7 +46,7 @@ provider: # you can add packaging information here package: - artifact: bin/release/netcoreapp1.0/publish/deploy-package.zip + artifact: bin/release/netcoreapp1.0/publish/deploy-package.zip # exclude: # - exclude-me.js # - exclude-me-dir/** diff --git a/lib/plugins/create/templates/aws-csharp/serverless.yml b/lib/plugins/create/templates/aws-csharp/serverless.yml index bd10eac21..850d59ad8 100644 --- a/lib/plugins/create/templates/aws-csharp/serverless.yml +++ b/lib/plugins/create/templates/aws-csharp/serverless.yml @@ -46,7 +46,7 @@ provider: # you can add packaging information here package: - artifact: bin/release/netcoreapp1.0/publish/deploy-package.zip + artifact: bin/release/netcoreapp1.0/publish/deploy-package.zip # exclude: # - exclude-me.js # - exclude-me-dir/**