PRevent unused warning

This commit is contained in:
Tonye Jack 2023-05-23 00:54:07 -06:00
parent 9de2ea8c70
commit 5287680297

View File

@ -208,7 +208,7 @@ export const gitFetch = async ({
)
/* istanbul ignore if */
if (exitCode !== 0 || stderr) {
if (exitCode !== 0) {
core.warning(stderr || "Couldn't fetch repository")
}
@ -232,7 +232,7 @@ export const gitFetchSubmodules = async ({
)
/* istanbul ignore if */
if (exitCode !== 0 || stderr) {
if (exitCode !== 0) {
core.warning(stderr || "Couldn't fetch submodules")
}
}