mirror of
https://github.com/actions/setup-java.git
synced 2025-04-19 17:36:45 +00:00
trying to force gpg homedir to posix for windows to fix windows import bug
This commit is contained in:
parent
11c39b61f2
commit
1607b0dafd
2 changed files with 2 additions and 2 deletions
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
|
@ -13208,7 +13208,7 @@ const util = __importStar(__webpack_require__(322));
|
|||
const xmlbuilder2_1 = __webpack_require__(255);
|
||||
exports.M2_DIR = '.m2';
|
||||
exports.TEMP_DIR = util.getTempDir();
|
||||
exports.GPG_HOME_DIR = path.join(exports.TEMP_DIR, '.gnupg');
|
||||
exports.GPG_HOME_DIR = path.join(exports.TEMP_DIR, '.gnupg').replace(/\\/g, '/'); // Enforce posix path
|
||||
exports.SETTINGS_FILE = 'settings.xml';
|
||||
exports.PRIVATE_KEY_FILE = 'private-key.asc';
|
||||
exports.DEFAULT_ID = 'github';
|
||||
|
|
|
@ -9,7 +9,7 @@ import {create as xmlCreate} from 'xmlbuilder2';
|
|||
|
||||
export const M2_DIR = '.m2';
|
||||
export const TEMP_DIR = util.getTempDir();
|
||||
export const GPG_HOME_DIR = path.join(TEMP_DIR, '.gnupg');
|
||||
export const GPG_HOME_DIR = path.join(TEMP_DIR, '.gnupg').replace(/\\/g, '/'); // Enforce posix path
|
||||
export const SETTINGS_FILE = 'settings.xml';
|
||||
export const PRIVATE_KEY_FILE = 'private-key.asc';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue