Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Converted Assume Role to C# and also Fixed Secret Key Access to Non-Plain Text #744

Merged
merged 16 commits into from
Jul 15, 2020
Prev Previous commit
Next Next commit
exec.Command returns a cmd
  • Loading branch information
XUANHE ZHOU committed Jul 7, 2020
commit 78f68ae79cc66615e447abdbb66ed63db47605c0
3 changes: 2 additions & 1 deletion misc/test/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@ func TestAccAwsTsS3LambdaCopyZip(t *testing.T) {
}

func TestAccAwsTsServerlessRaw(t *testing.T) {
err := exec.Command("dotnet publish", "app")
cmd := exec.Command("dotnet publish", "app")
err := cmd.Run()
if err != nil {
fmt.Printf("err: %v", err)
return
Expand Down