You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pkg/cleaner/cleaner.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ package cleaner
5
5
import (
6
6
"context"
7
7
"fmt"
8
-
"io/ioutil"
8
+
"os"
9
9
"path/filepath"
10
10
"regexp"
11
11
"strings"
@@ -28,7 +28,7 @@ const (
28
28
// localDirs returns all of the local directories immediately under gitHome that filter returns true for.
29
29
// filter will receive only the names of each of the top level directories (not their fully qualified paths), and should return true if it should be included in the output
0 commit comments