From 32ace3a191cf9b3e601301d950392348a6b44666 Mon Sep 17 00:00:00 2001 From: Vallie Joseph Date: Tue, 6 Dec 2022 16:32:05 +0000 Subject: [PATCH] adding info --- dist/index.js | 2 +- package.json | 1 + src/git-auth-helper.ts | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index c643039..b348653 100644 --- a/dist/index.js +++ b/dist/index.js @@ -7204,7 +7204,7 @@ class GitAuthHelper { if (((_a = this.temporaryHomePath) === null || _a === void 0 ? void 0 : _a.length) > 0) { core.debug(`Unsetting HOME override`); this.git.removeEnvironmentVariable('HOME'); - core.info(`hi there: $(this.temporaryHomePath)`); + core.info(`hi there: ${this.temporaryHomePath}`); yield io .rmRF(this.temporaryHomePath) // eslint-disable-next-line github/no-then diff --git a/package.json b/package.json index 4131727..540069b 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "description": "checkout action", "main": "lib/main.js", "scripts": { + "build-full": "npm run format && npm run build && npm run test", "build": "tsc && ncc build && node lib/misc/generate-docs.js", "format": "prettier --write '**/*.ts'", "format-check": "prettier --check '**/*.ts'", diff --git a/src/git-auth-helper.ts b/src/git-auth-helper.ts index 7788322..1689fc6 100644 --- a/src/git-auth-helper.ts +++ b/src/git-auth-helper.ts @@ -198,7 +198,7 @@ class GitAuthHelper { core.debug(`Unsetting HOME override`) this.git.removeEnvironmentVariable('HOME') - core.info(`hi there: $(this.temporaryHomePath)`) + core.info(`hi there: ${this.temporaryHomePath}`) await io .rmRF(this.temporaryHomePath) // eslint-disable-next-line github/no-then