mirror of
https://gitea.com/actions/upload-artifact.git
synced 2024-11-22 16:45:57 +01:00
Update search.ts
This commit is contained in:
parent
f791f1aea4
commit
ce7252b666
1 changed files with 2 additions and 3 deletions
|
@ -23,8 +23,8 @@ export function getGlobOptions(
|
||||||
followSymbolicLinks?: boolean
|
followSymbolicLinks?: boolean
|
||||||
): glob.GlobOptions {
|
): glob.GlobOptions {
|
||||||
return {
|
return {
|
||||||
followSymbolicLinks,
|
...getDefaultGlobOptions(),
|
||||||
...getDefaultGlobOptions()
|
followSymbolicLinks
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -97,7 +97,6 @@ export async function findFilesToUpload(
|
||||||
globOptions || getDefaultGlobOptions()
|
globOptions || getDefaultGlobOptions()
|
||||||
)
|
)
|
||||||
const rawSearchResults: string[] = await globber.glob()
|
const rawSearchResults: string[] = await globber.glob()
|
||||||
console.log(rawSearchResults)
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Files are saved with case insensitivity. Uploading both a.txt and A.txt will files to be overwritten
|
Files are saved with case insensitivity. Uploading both a.txt and A.txt will files to be overwritten
|
||||||
|
|
Loading…
Reference in a new issue