load and include_defs look in the wrong directory if cell-name contains dots or dashes
See original GitHub issueminimal example: https://github.com/nikhedonia/buck-load-test
error message:
BUILD FAILED: Buck wasn't able to parse /home/gaetano/projects/buck-load-test/cells/main/BUCK:
IOError: [Errno 2] No such file or directory: '/home/gaetano/projects/buck-load-test/cells/main/DEFS'
Call stack:
File "/home/gaetano/projects/buck-load-test/cells/main/BUCK", line 1
load('cells.utils//:DEFS', 'FOO')
If the dots are removed from the cell names the build succeeded.
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Bash script to replace all hyphens with dots in filenames
A even simpler way is to do the replacement with bash syntax rather than sed. for file in *-*-*; do mv "$file" "${file//-/.}"...
Read more >How To Remove Dashes in Excel: A Step-by-Step Guide
Click on the "OK" button to close the dialog box and remove all the dashes from the cell range you highlighted.
Read more >Remove Second Hyphen with Excel's SUBSTITUTE Formula
For example, I would like to how to remove dashes in Excel – it's 2nd occurrence. Normally I would have to find the...
Read more >Using a Formula to Replace Spaces with Dashes
This formula locates every space in the text and replaces them with dashes. If you have additional product descriptions in column A and...
Read more >How to Add a Hyphen on Excel - Small Business - Chron.com
Hyphens can help break up long numbers in a spreadsheet, improving readability while adding a more professional look. If you have left out...
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
thanks. I can confirm that it works with Skylark
Thx for fixing it for
load
in the latest release.