Skip to content

Commit

Permalink
lint: octal permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
umputun committed May 4, 2023
1 parent 79580b3 commit 696bff1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/executor/local_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ func TestUploadDownloadWithGlob(t *testing.T) {
defer os.RemoveAll(tmpDir)

data1File := filepath.Join(tmpDir, "data1.txt")
err = os.WriteFile(data1File, []byte("data1 content"), 0644)
err = os.WriteFile(data1File, []byte("data1 content"), 0o644)
require.NoError(t, err)

data2File := filepath.Join(tmpDir, "data2.txt")
err = os.WriteFile(data2File, []byte("data2 content"), 0644)
err = os.WriteFile(data2File, []byte("data2 content"), 0o644)
require.NoError(t, err)

// create a temporary destination directory
Expand Down

0 comments on commit 696bff1

Please sign in to comment.