You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using PathToUnderscores, we are now getting an error that the generated file does not exist. However, the path to the non-existant file is the full path version (e.g. some/path/to/my.pb.swift). I believe the issue is in plugin.swift where the proto input file is mapped to an output file
let protobufOutputPath = outputDirectory.appending(file)
// Add the outputPath as an output file
outputFiles.append(protobufOutputPath)
That sets up a dependency from some/path/to/my.proto to some/path/to/my.pb.swift but the latter doesn't exist since the generator actually generated some_path_to_my.pb.swift.