fix comments

This commit is contained in:
Dmitry Shibanov 2022-07-25 12:42:35 +02:00
parent 0021e2d68e
commit 0572342a8a
4 changed files with 20 additions and 19 deletions

View file

@ -5,6 +5,7 @@ import * as exec from '@actions/exec';
import * as core from '@actions/core';
import CacheDistributor from './cache-distributor';
import { logWarning } from '../utils';
class PoetryCache extends CacheDistributor {
constructor(
@ -43,10 +44,10 @@ class PoetryCache extends CacheDistributor {
);
if (exitCode) {
core.info(`[warning]${stderr}`);
logWarning(stderr);
}
} else {
core.info('[warning]python binaries were not found in PATH.');
logWarning('python binaries were not found in PATH');
}
return paths;