mirror of
https://github.com/actions/setup-go.git
synced 2025-07-01 05:33:43 +00:00
Fix review points
README.md file was updated, removed async declaration in cache-utils file and changed the error message in cache-save file.
This commit is contained in:
parent
a4ab0b1477
commit
2d848c0e6a
5 changed files with 6 additions and 7 deletions
|
@ -40,7 +40,7 @@ const cachePackages = async () => {
|
|||
);
|
||||
|
||||
if (nonExistingPaths.length === cachePaths.length) {
|
||||
throw new Error(`No cache folders exist on disk`);
|
||||
throw new Error(`There are no cache folders on the disk`);
|
||||
}
|
||||
|
||||
if (nonExistingPaths.length) {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
import * as cache from '@actions/cache';
|
||||
import * as core from '@actions/core';
|
||||
import * as exec from '@actions/exec';
|
||||
import path from 'path';
|
||||
import {supportedPackageManagers, PackageManagerInfo} from './package-managers';
|
||||
|
||||
export const getCommandOutput = async (toolCommand: string) => {
|
||||
|
@ -36,7 +35,7 @@ export const getCacheDirectoryPath = async (
|
|||
packageManagerInfo: PackageManagerInfo
|
||||
) => {
|
||||
let pathList = await Promise.all(
|
||||
packageManagerInfo.cacheFolderCommandList.map(async command =>
|
||||
packageManagerInfo.cacheFolderCommandList.map(command =>
|
||||
getCommandOutput(command)
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue