Possible dependency error in Package.swift
gbrooker opened this issue · 1 comments
gbrooker commented
I don't build on linux, but spotted this in the linux section of Package.swift
package.targets[0].dependencies.append("NetService")
Shouldn't that be
package.targets[1].dependencies.append("NetService")
now that CQRCode
is the first (i.e [0]) target ?
Bouke commented
It worked even though the configuration was not correct. Thanks, I've resolved the issue.