1
Fork 0
mirror of https://gitea.com/actions/upload-artifact.git synced 2024-11-22 16:45:57 +01:00
This commit is contained in:
Josh Gross 2024-08-15 20:37:17 -04:00
parent fa37431cef
commit f626d210e8
No known key found for this signature in database

View file

@ -89,13 +89,10 @@ export interface SearchOptions {
export async function findFilesToUpload(
searchPath: string,
searchOptions?: SearchOptions,
searchOptions?: SearchOptions
): Promise<SearchResult> {
const searchResults: string[] = []
const globber = await glob.create(
searchPath,
getDefaultGlobOptions()
)
const globber = await glob.create(searchPath, getDefaultGlobOptions())
const rawSearchResults: string[] = await globber.glob()
/*