Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
corverroos committed May 31, 2022
1 parent b7f3dfc commit f566d19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage.out

app_tests:
integration_tests:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
Expand Down
2 changes: 2 additions & 0 deletions testutil/compose/compose/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,8 @@ func newAutoCmd(tmplCallback func(data *compose.TmplData)) *cobra.Command {
return cmd
}

// fixPerms fixes file permissions as a workaround for linux docker by removing
// all restrictions using sudo chmod.
func fixPerms(ctx context.Context, dir string) error {
cmd := exec.CommandContext(ctx, "sudo", "chmod", "-R", "a+wrX", ".")
cmd.Dir = dir
Expand Down

0 comments on commit f566d19

Please sign in to comment.