format & resolve conflicts

This commit is contained in:
Sergey Dolin 2023-04-13 12:30:59 +02:00
parent 3fa1d09fcc
commit 928eb4967d
3 changed files with 0 additions and 9 deletions

View File

@ -59283,10 +59283,6 @@ const getCommandOutput = (toolCommand, cwd) => __awaiter(void 0, void 0, void 0,
});
exports.getCommandOutput = getCommandOutput;
const getPackageManagerWorkingDir = () => {
const projectDir = core.getInput('project-dir');
if (projectDir) {
return projectDir;
}
const cache = core.getInput('cache');
if (cache !== 'yarn') {
return null;

4
dist/setup/index.js vendored
View File

@ -71251,10 +71251,6 @@ const getCommandOutput = (toolCommand, cwd) => __awaiter(void 0, void 0, void 0,
});
exports.getCommandOutput = getCommandOutput;
const getPackageManagerWorkingDir = () => {
const projectDir = core.getInput('project-dir');
if (projectDir) {
return projectDir;
}
const cache = core.getInput('cache');
if (cache !== 'yarn') {
return null;

View File

@ -52,7 +52,6 @@ export const getCommandOutput = async (
};
export const getPackageManagerWorkingDir = (): string | null => {
const cache = core.getInput('cache');
if (cache !== 'yarn') {
return null;