generated and pretty files

This commit is contained in:
Bryan Clark
2019-11-28 12:40:45 -08:00
parent b0e5cf270d
commit dc5f78f54d
4 changed files with 16 additions and 9 deletions

View File

@ -7,7 +7,11 @@ import * as io from '@actions/io';
export const M2_DIR = '.m2';
export const SETTINGS_FILE = 'settings.xml';
export async function configAuthentication(id: string, username: string, password: string) {
export async function configAuthentication(
id: string,
username: string,
password: string
) {
if (id && username && password) {
core.debug(`configAuthentication with ${username} and a password`);
const directory: string = path.join(os.homedir(), M2_DIR);