Skip to content

Commit bdca84a

Browse files
committed
use absolute path
1 parent f3731db commit bdca84a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func (m *Ci) BuildSastContainer(dir *dagger.Directory) *dagger.Container {
5454
WithMountedDirectory("/app", dir).
5555
WithWorkdir("/app").
5656
WithExec([]string{"sh", "-c", "mkdir -p /app/sast"}).
57-
WithExec([]string{"/usr/src/app/bin/brakeman -o sast/brakeman-output.tabs"})
57+
WithExec([]string{"/usr/src/app/bin/brakeman -o /app/sast/brakeman-output.tabs"})
5858
}
5959

6060
// Creates a PostgreSQL service for local testing based on the official image with the provided version. If no version is provided, 'latest' will be used.

0 commit comments

Comments
 (0)