|
|
|
|
@ -23,8 +23,8 @@ export function getGlobOptions(
|
|
|
|
|
followSymbolicLinks?: boolean
|
|
|
|
|
): glob.GlobOptions {
|
|
|
|
|
return {
|
|
|
|
|
followSymbolicLinks,
|
|
|
|
|
...getDefaultGlobOptions()
|
|
|
|
|
...getDefaultGlobOptions(),
|
|
|
|
|
followSymbolicLinks
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -97,7 +97,6 @@ export async function findFilesToUpload(
|
|
|
|
|
globOptions || getDefaultGlobOptions()
|
|
|
|
|
)
|
|
|
|
|
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
|
|
|
|
|
|