mirror of
https://github.com/actions/checkout.git
synced 2026-07-17 18:00:05 +00:00
escape values passed to --unset (#2530)
This commit is contained in:
parent
12cd2235ef
commit
28802689a1
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -35913,7 +35913,7 @@ class GitCommandManager {
|
|||||||
else {
|
else {
|
||||||
args.push(globalConfig ? '--global' : '--local');
|
args.push(globalConfig ? '--global' : '--local');
|
||||||
}
|
}
|
||||||
args.push('--unset', configKey, configValue);
|
args.push('--unset', configKey, regexp_helper_escape(configValue));
|
||||||
const output = await this.execGit(args, true);
|
const output = await this.execGit(args, true);
|
||||||
return output.exitCode === 0;
|
return output.exitCode === 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -510,7 +510,7 @@ class GitCommandManager {
|
|||||||
} else {
|
} else {
|
||||||
args.push(globalConfig ? '--global' : '--local')
|
args.push(globalConfig ? '--global' : '--local')
|
||||||
}
|
}
|
||||||
args.push('--unset', configKey, configValue)
|
args.push('--unset', configKey, regexpHelper.escape(configValue))
|
||||||
|
|
||||||
const output = await this.execGit(args, true)
|
const output = await this.execGit(args, true)
|
||||||
return output.exitCode === 0
|
return output.exitCode === 0
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user