mirror of
https://code.forgejo.org/actions/setup-go.git
synced 2024-12-26 23:12:21 -05:00
more logs and logic change
Signed-off-by: Anton Troshin <anton@diagrid.io>
This commit is contained in:
parent
f8cf508b5f
commit
e3c077dd6d
2 changed files with 16 additions and 6 deletions
11
dist/setup/index.js
vendored
11
dist/setup/index.js
vendored
|
@ -88402,12 +88402,17 @@ function cacheWindowsDir(extPath, tool, version, arch) {
|
||||||
for (const cachePath of actualCacheDirectoryPaths) {
|
for (const cachePath of actualCacheDirectoryPaths) {
|
||||||
core.info(`Trying to link ${cachePath.defaultPath} to ${cachePath.actualPath}`);
|
core.info(`Trying to link ${cachePath.defaultPath} to ${cachePath.actualPath}`);
|
||||||
try {
|
try {
|
||||||
|
if (!fs_1.default.existsSync(cachePath.defaultPath)) {
|
||||||
|
core.info(`Default path ${cachePath.defaultPath} does not exist`);
|
||||||
|
core.info(`Creating directory ${cachePath.defaultPath}`);
|
||||||
|
fs_1.default.mkdirSync(cachePath.defaultPath, { recursive: true });
|
||||||
|
}
|
||||||
if (!fs_1.default.existsSync(cachePath.actualPath)) {
|
if (!fs_1.default.existsSync(cachePath.actualPath)) {
|
||||||
core.info(`Creating directory ${cachePath.actualPath}`);
|
core.info(`Actual path ${cachePath.actualPath} does not exist. Safe to create symlink`);
|
||||||
fs_1.default.mkdirSync(path.dirname(cachePath.actualPath), { recursive: true });
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
core.info(`Directory ${cachePath.actualPath} already exists`);
|
core.info(`Actual path ${cachePath.actualPath} already exists. Skipping symlink creation`);
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
// check if the default path is a symlink
|
// check if the default path is a symlink
|
||||||
const isSymlink = fs_1.default.lstatSync(cachePath.defaultPath).isSymbolicLink();
|
const isSymlink = fs_1.default.lstatSync(cachePath.defaultPath).isSymbolicLink();
|
||||||
|
|
|
@ -236,11 +236,16 @@ async function cacheWindowsDir(
|
||||||
for (const cachePath of actualCacheDirectoryPaths) {
|
for (const cachePath of actualCacheDirectoryPaths) {
|
||||||
core.info(`Trying to link ${cachePath.defaultPath} to ${cachePath.actualPath}`);
|
core.info(`Trying to link ${cachePath.defaultPath} to ${cachePath.actualPath}`);
|
||||||
try {
|
try {
|
||||||
|
if (!fs.existsSync(cachePath.defaultPath)) {
|
||||||
|
core.info(`Default path ${cachePath.defaultPath} does not exist`);
|
||||||
|
core.info(`Creating directory ${cachePath.defaultPath}`);
|
||||||
|
fs.mkdirSync(cachePath.defaultPath, {recursive: true});
|
||||||
|
}
|
||||||
if (!fs.existsSync(cachePath.actualPath)) {
|
if (!fs.existsSync(cachePath.actualPath)) {
|
||||||
core.info(`Creating directory ${cachePath.actualPath}`);
|
core.info(`Actual path ${cachePath.actualPath} does not exist. Safe to create symlink`);
|
||||||
fs.mkdirSync(path.dirname(cachePath.actualPath), {recursive: true});
|
|
||||||
} else {
|
} else {
|
||||||
core.info(`Directory ${cachePath.actualPath} already exists`);
|
core.info(`Actual path ${cachePath.actualPath} already exists. Skipping symlink creation`);
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// check if the default path is a symlink
|
// check if the default path is a symlink
|
||||||
|
|
Loading…
Reference in a new issue