Fix linter

This commit is contained in:
Fedor Korotkiy 2021-04-30 13:33:35 +03:00
parent 5ef0c2aaf7
commit 54cd663edf

View file

@ -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)
}