Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
aws.lambda.Function: use seperate folders for zipping so recursiong d…
Browse files Browse the repository at this point in the history
…oes not happen on mac
  • Loading branch information
thdxr committed Oct 12, 2024
1 parent a9eec92 commit 58ff05e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/runtime/runtime.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ type BuildInput struct {
}

func (input *BuildInput) Out() string {
suffix := ""
suffix := "-src"
if input.Dev {
suffix = "-dev"
}
Expand Down Expand Up @@ -129,7 +129,7 @@ func (c *Collection) Build(ctx context.Context, input *BuildInput) (*BuildOutput
return nil, err
}
}
if !input.Dev && false {
if !input.Dev {
sourceFile, err := os.Open(from)
if err != nil {
return nil, err
Expand Down

0 comments on commit 58ff05e

Please sign in to comment.