Error: ENOENT: no such file or directory, open './original/OperatorMono-Medium.ttx'
See original GitHub issueI get this error when run build.sh, I am using node v8.4.0
➜ operator-mono-lig git:(master) ✗ sh build.sh
rm: original/*.ttx: No such file or directory
build.sh: line 4: ttx: command not found
build.sh: line 5: ttx: command not found
Reading original font file ./original/OperatorMono-Medium.ttx
(node:19784) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: ENOENT: no such file or directory, open './original/OperatorMono-Medium.ttx'
(node:19784) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Reading original font file ./original/OperatorMono-MediumItalic.ttx
(node:19785) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: ENOENT: no such file or directory, open './original/OperatorMono-MediumItalic.ttx'
(node:19785) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
build.sh: line 14: ttx: command not found
build.sh: line 15: ttx: command not found
Issue Analytics
- State:
- Created 6 years ago
- Comments:15 (5 by maintainers)
Top Results From Across the Web
node.js - ENOENT, no such file or directory - Stack Overflow
I believe the previous answer is the correct answer to this problem but I was getting this error when I tried installing npm...
Read more >Error: ENOENT: no such file or directory #1556 - GitHub
I want to build the bundle files to dist directory but when i run npm run build, the console give me these: Did...
Read more >Error: ENOENT: no such file or directory, open
We tried to import the project in Visualizer, but when we run the program, we encountered this error. Anyone familiar with this?
Read more >Error: ENOENT: no such file or directory, scandir ... - YouTube
nodejsError: ENOENT : no such file or directory, scandir '**/node_modules/node-sass/vendor' | Module build failed (from .
Read more >ENOENT: no such file or directory" (Doc ID 2895246.1)
Visual Builder Studio - Version 20.10 and later: When Selecting "Optimize Application" VBS Package Job Fails With "Error: ENOENT: no such ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
for ubuntu users
sudo apt install fonttools python3-fonttools
and after installation run./buid.sh
it workd for me 😀FYI, for Mac users, I advice to run
pip3 install fonttools
, solving mac permissions problems (https://stackoverflow.com/a/33416270/3191011)