mirror of
https://github.com/dorny/paths-filter.git
synced 2025-06-23 10:58:03 +02:00
Ignore error when some tag on remote was updated
This commit is contained in:
@ -71,7 +71,9 @@ export async function getChangesSinceMergeBase(base: string, ref: string, initia
|
||||
if (baseRef === undefined) {
|
||||
baseRef = await getFullRef(base)
|
||||
if (baseRef === undefined) {
|
||||
await exec('git', ['fetch', '--tags', `--depth=1`, 'origin', base, ref])
|
||||
await exec('git', ['fetch', '--tags', '--depth=1', 'origin', base, ref], {
|
||||
ignoreReturnCode: true // returns exit code 1 if tags on remote were updated - we can safely ignore it
|
||||
})
|
||||
baseRef = await getFullRef(base)
|
||||
if (baseRef === undefined) {
|
||||
throw new Error(`Could not determine what is ${base} - fetch works but it's not a branch or tag`)
|
||||
|
Reference in New Issue
Block a user