Skip to content

Commit

Permalink
Specify output files in the build tool plugins.
Browse files Browse the repository at this point in the history
  • Loading branch information
younata committed Mar 30, 2024
1 parent 99de308 commit 47cfc5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Plugins/LintError/LintError.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ struct LintError: BuildToolPlugin {
displayName: "QuickLint",
executable: executable.path,
arguments: ["lint", "--error"] + files.map { $0.string },
inputFiles: files
inputFiles: files,
outputFiles: files
)]
}
}
Expand Down
3 changes: 2 additions & 1 deletion Plugins/LintWarning/LintWarning.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ struct LintWarning: BuildToolPlugin {
displayName: "QuickLint",
executable: executable.path,
arguments: ["lint"] + files.map { $0.string },
inputFiles: files
inputFiles: files,
outputFiles: files
)]
}
}
Expand Down

0 comments on commit 47cfc5c

Please sign in to comment.