-
Notifications
You must be signed in to change notification settings - Fork 1.2k
fix(files.add): handle weird directory names #1153
Conversation
@diasdavid Both travis and circle are queuing the build! Hopefully, they will get built by the time you get around to this. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you add a test too?
@diasdavid it looks like some wrong code has entered
|
@richardschneider can you rebase master onto this branch? |
I've never |
@richardschneider There are some really good tutorials out there that will give you a full understanding of what rebase means:
Let me know if this works for you, otherwise, I can do it for now and you can practice in another repo. You will use it more times in the future. |
* fix: cat: test file existence *after* filtering. Should fix #1142 * fix: cat: filtering out result files * fix: cat: for when the ipfs path is a buffer * fix: cat: remove /ipfs/ prefix if there is one
* fix: bitswap stats: use new bitswap stats, but keep the old interface (for now) * fix: bitswap stat tests * chore: using latest ipfs-bitswap version
* fix: ipfs ls: allow any depth. Should fix #1079 * chore: CLI: tests: added recursive ls test * fix bitswap timeouts
I've broken this with the rebase. Will open another PR. |
* refactor: convert block API to async/await depends on: * [ ] ipfs-inactive/js-ipfs-http-client#1150 License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai> * feat: support the version param License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai> * refactor: convert DAG API to async/await License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai> * fix: add util to convert a single buffer to a form data object License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai> * fix: exported function
glob
was interpreting the '[' inwierd [v0]
as a special magic character. According to its documentation, a caller should be able to escape it with\
; but it does not work.See the glob issue.