Fix linter
This commit is contained in:
parent
5ef0c2aaf7
commit
54cd663edf
1 changed files with 2 additions and 2 deletions
|
@ -213,7 +213,7 @@ func runTests(testDir, privateRepo, problem string) error {
|
|||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
if err := os.Chmod(binCache, 0755); err != nil {
|
||||
if err = os.Chmod(binCache, 0755); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
|
||||
|
@ -222,7 +222,7 @@ func runTests(testDir, privateRepo, problem string) error {
|
|||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
if err := os.Chmod(goCache, 0777); err != nil {
|
||||
if err = os.Chmod(goCache, 0777); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue