StefanPeev / Common-Serif

The Common Serif project is based on Libertinus Serif.
SIL Open Font License 1.1
55 stars 3 forks source link

Error in building fonts: "Process completed with exit code 2" #57

Open StefanPeev opened 8 months ago

StefanPeev commented 8 months ago

@kateliev

I'll be thankful for any help in solving this problem in build.yaml.

Run make .init.stamp make .init.stamp shell: /usr/bin/bash -e {0} env: pythonLocation: /opt/hostedtoolcache/Python/3.10.13/x64 LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.10.13/x64/lib make: *** No rule to make target '.init.stamp'. Stop. Error: Process completed with exit code 2.

goranovg commented 7 months ago

From the error message, it seems like Make is unable to find a rule to build the .init.stamp target. To resolve this, you'll need to define a rule for .init.stamp in your Makefile. Do you have already .init.stamp in place? If not, you can try to use a touch command in order create the file. If the file already present and it is not the default one, you can try to point it out with -f option

StefanPeev commented 7 months ago

@goranovg Thank you. I'm afraid that I do not know how to use a touch command in order to create a .init.stamp file.