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
In PKGBUILD in package() the source file name for the installation of macfand.service is wrong. package() {... install -Dm644 macfand.service "${pkgdir}/usr/lib/systemd/system/macfand.service" ... }
It must be called package() { ... install -Dm644 macfand.service.gen "${pkgdir}/usr/lib/systemd/system/macfand.service" ... }
Otherwise package() fails with exit code 4
The text was updated successfully, but these errors were encountered:
In PKGBUILD in package() the source file name for the installation of macfand.service is wrong.
package() {... install -Dm644 macfand.service "${pkgdir}/usr/lib/systemd/system/macfand.service" ... }
It must be called
package() { ... install -Dm644 macfand.service.gen "${pkgdir}/usr/lib/systemd/system/macfand.service" ... }
Otherwise package() fails with exit code 4
The text was updated successfully, but these errors were encountered: