ソースを参照

fix typo in error message

Signed-off-by: Stanislav Zhuk <[email protected]>
Stanislav Zhuk 2 ヶ月 前
コミット
10f15cacdd
1 ファイル変更1 行追加1 行削除
  1. 1 1
      pkg/compose/build_bake.go

+ 1 - 1
pkg/compose/build_bake.go

@@ -300,7 +300,7 @@ func (s *composeService) doBuildBake(ctx context.Context, project *types.Project
 			}
 			var pathError *fs.PathError
 			if errors.As(err, &pathError) {
-				return nil, fmt.Errorf("can't acces os.tempDir %s: %w", tmpdir, pathError.Err)
+				return nil, fmt.Errorf("can't access os.tempDir %s: %w", tmpdir, pathError.Err)
 			}
 		}
 	}