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
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.
The text was updated successfully, but these errors were encountered:
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
@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.
The text was updated successfully, but these errors were encountered: