mirror of
https://github.com/dorny/paths-filter.git
synced 2024-11-12 08:38:35 +00:00
Ignore error when some tag on remote was updated
This commit is contained in:
parent
ad1ae68cd0
commit
208adf42c8
4
dist/index.js
vendored
4
dist/index.js
vendored
@ -3879,7 +3879,9 @@ async function getChangesSinceMergeBase(base, ref, initialFetchDepth) {
|
||||
if (baseRef === undefined) {
|
||||
baseRef = await getFullRef(base);
|
||||
if (baseRef === undefined) {
|
||||
await exec_1.default('git', ['fetch', '--tags', `--depth=1`, 'origin', base, ref]);
|
||||
await exec_1.default('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`);
|
||||
|
@ -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`)
|
||||
|
Loading…
Reference in New Issue
Block a user