Revert "added paths in tsconfig.json"

This reverts commit cb2f4176bf.
This commit is contained in:
aksm-ms
2020-03-17 17:26:39 +05:30
parent cb2f4176bf
commit 860e5ace46
7 changed files with 21 additions and 25 deletions

View File

@@ -15,16 +15,13 @@ var __importStar = (this && this.__importStar) || function (mod) {
result["default"] = mod;
return result;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const core = __importStar(require("@actions/core"));
const crypto = __importStar(require("crypto"));
const exec = __importStar(require("@actions/exec"));
const io = __importStar(require("@actions/io"));
const actions_secret_parser_1 = require("actions-secret-parser");
const ServicePrincipalLogin_1 = __importDefault(require("PowerShell/ServicePrincipalLogin"));
const ServicePrincipalLogin_1 = require("./PowerShell/ServicePrincipalLogin");
var azPath;
var prefix = !!process.env.AZURE_HTTP_USER_AGENT ? `${process.env.AZURE_HTTP_USER_AGENT}` : "";
function main() {
@@ -51,7 +48,7 @@ function main() {
yield executeAzCliCommand(`account set --subscription "${subscriptionId}"`);
if (enablePSSession) {
console.log(`Running Azure PS Login`);
const spnlogin = new ServicePrincipalLogin_1.default(servicePrincipalId, servicePrincipalKey, tenantId, subscriptionId);
const spnlogin = new ServicePrincipalLogin_1.ServicePrincipalLogin(servicePrincipalId, servicePrincipalKey, tenantId, subscriptionId);
spnlogin.initialize();
spnlogin.login();
}