File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ public protocol ExternalCommand: AnyObject {
250
250
var dependencyPaths : [ String ] { get }
251
251
252
252
/// Format of the dependency files listed in `dependencyPaths`.
253
- var depedencyDataFormat : DependencyDataFormat { get }
253
+ var dependencyDataFormat : DependencyDataFormat { get }
254
254
255
255
/// Optional. The command's working directory. Used to resolve relative paths in dependency files.
256
256
var workingDirectory : String ? { get }
@@ -407,7 +407,7 @@ public extension ExternalCommand {
407
407
408
408
// Default implementations for these hooks since they're optional to the client.
409
409
public extension ExternalCommand {
410
- var depedencyDataFormat : DependencyDataFormat { . unused }
410
+ var dependencyDataFormat : DependencyDataFormat { . unused }
411
411
var dependencyPaths : [ String ] { [ ] }
412
412
var workingDirectory : String ? { nil }
413
413
func start( _ command: Command , _ commandInterface: BuildSystemCommandInterface ) { }
@@ -442,7 +442,7 @@ private final class CommandWrapper {
442
442
if !command. dependencyPaths. isEmpty {
443
443
var formatKey = copiedDataFromBytes ( Array ( " deps-style " . utf8) )
444
444
var value : llb_data_t
445
- switch command. depedencyDataFormat {
445
+ switch command. dependencyDataFormat {
446
446
case . makefile:
447
447
value = copiedDataFromBytes ( Array ( " makefile " . utf8) )
448
448
case . dependencyinfo:
You can’t perform that action at this time.
0 commit comments