1
0
mirror of https://github.com/go-task/task.git synced 2025-02-09 13:47:06 +02:00

Fix delete of files before test run

This commit is contained in:
Andrey Nering 2017-03-25 10:52:41 -03:00
parent e28b0bc646
commit c2773a7287

View File

@ -28,7 +28,7 @@ func TestDeps(t *testing.T) {
}
for _, f := range files {
_ = os.Remove(f)
_ = os.Remove(filepath.Join(dir, f))
}
c := exec.Command("task")