allow multiple glob patterns

This commit is contained in:
Ell 2023-07-02 17:00:41 +02:00
parent be1321fa45
commit 9472407096
2 changed files with 40 additions and 37 deletions

View file

@ -10,7 +10,8 @@ steps:
server: https://cloud.ellpeck.de # the server to use
user: EllBot # the user
token: access-token # the access token, or password if 2FA is disabled
files: "**/*.md" # the file(s), uses glob pattern
files: # the file(s), uses glob patterns
- "**/*.md"
dest: Uploads/CoolMarkdownFiles # the destination directory
basedir: "." # optional, local base directory for files, defaults to .
chunksize: # optional, chunk size in bytes, defaults to 52428800

View file

@ -28,7 +28,8 @@ upload();
async function upload() {
let basePath = `${serverEnv}/remote.php/dav`;
const upload = new Upload(basePath, userEnv, userEnv, tokenEnv);
let files = await glob.glob(filesEnv, { cwd: baseDir });
for (let pattern of filesEnv.split(",")) {
let files = await glob.glob(pattern, { cwd: baseDir });
if (!files.length)
console.log("No files to upload");
for (let file of files) {
@ -67,3 +68,4 @@ async function upload() {
});
}
}
}