Closed ianTevesAcc closed 7 months ago
I SOLVED IT!!!
I used git bash
terminal to run the make get
and make
command.
And it worked!!!
I tried running everything on Ubuntu and PowerShell before and it didn't work.
Solution:
Use git bash
terminal to run the make get
and make
command.
cd
command in your terminal - cd "/craftinginterpreters-master" (edit to the actual path of the directory)make get
command in git bash terminalmake
command in the git bash terminal
I have the dart-sdk + chocolatey + make all installed and running properly. All are in the Path. But for some reason when I run
make get
on the main directory. It results in the following error.PS C:\Users\marci\OneDrive\Desktop\craftinginterpreters-master> make get File not found - *.dart The system cannot find the path specified. make: *** [Makefile:10: get] Error 1
It can't find the .dart file types in the tool directory (+sub directories). I dont know where else to look in order to fix this issue.
Can I get some help?
Makefile code that identifies this issue: TOOL_SOURCES := tool/pubspec.lock $(shell find tool -name '*.dart') All apps are the latest stable versions.