jainpranav1 / Nand2Tetris-HDL-Visualizer

Repository for Nand2Tetris HDL Visualizer extension
2 stars 0 forks source link

ENOENT: no such file or directory, scandir #2

Closed mightyhorst closed 2 years ago

mightyhorst commented 2 years ago

Command 'Visualize HDL File' resulted in an error (A system error occurred (ENOENT: no such file or directory, scandir))

CHIP Or {
    IN a, b;
    OUT out;

    PARTS:
    Nand (a=nota, b=notb, out=out);
    Not (in=a, out=nota);
    Not (in=b, out=notb);
}
jainpranav1 commented 2 years ago

Thanks for letting me know! I will work on getting a fix for this issue soon.

jainpranav1 commented 2 years ago

image

Interestingly, it works on my Windows computer whenever I use google chrome. May I ask which operating system and browser you are using?

mightyhorst commented 2 years ago

Hi there, thanks for prompt reply. I am on a Mac (MacOS Monterey v12.0.1) and using the latest Google Chrome (Version 99.0.4844.51 (Official Build))

Screen Shot 2022-03-09 at 7 21 36 AM
jainpranav1 commented 2 years ago

Thanks for the details! I will try to get a fix soon.

jainpranav1 commented 2 years ago

The issue should now be fixed with version 0.0.5. The issue was that I was not considering that Mac and Windows describe paths differently (one using backslashes, while the other using forward slashes).

jainpranav1 commented 2 years ago

If the issue is resolved for you, I will close this issue.