PRevent unused warning
This commit is contained in:
parent
9de2ea8c70
commit
5287680297
@ -208,7 +208,7 @@ export const gitFetch = async ({
|
|||||||
)
|
)
|
||||||
|
|
||||||
/* istanbul ignore if */
|
/* istanbul ignore if */
|
||||||
if (exitCode !== 0 || stderr) {
|
if (exitCode !== 0) {
|
||||||
core.warning(stderr || "Couldn't fetch repository")
|
core.warning(stderr || "Couldn't fetch repository")
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -232,7 +232,7 @@ export const gitFetchSubmodules = async ({
|
|||||||
)
|
)
|
||||||
|
|
||||||
/* istanbul ignore if */
|
/* istanbul ignore if */
|
||||||
if (exitCode !== 0 || stderr) {
|
if (exitCode !== 0) {
|
||||||
core.warning(stderr || "Couldn't fetch submodules")
|
core.warning(stderr || "Couldn't fetch submodules")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user