Open
Description
Assuming we have this folder structure:
.
├── a
│ └── a.md
└── b
├── a -> ../a/
└── b.md
rdme docs a
will uploada.md
as expectedrdme docs b
will uploadb.md
and completely ignore the folder structure (I expecta.md
to be there as well)rdme docs b/a
will uploada.md
but the logging seems broken (updating files are blank lines):
🔑 [email protected] is currently logged in, using the stored API key for this project: xxx
`aa` was not updated because there were no changes.
`bb` was not updated because there were no changes.
✏
`dd` was not updated because there were no changes.
To build the folder structure above:
mkdir a b
touch a/a.md # Of course, we need at least the yaml header in there, to actually test it
touch b/b.md
cd b
ln -s ../a ./