mirror of
https://github.com/actions/setup-java.git
synced 2025-05-21 18:01:46 +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
BIN
dist/index.js
generated
vendored
BIN
dist/index.js
generated
vendored
Binary file not shown.
@ -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…
Reference in New Issue
Block a user