Skip to content

Commit 0c76f3d

Browse files
test
1 parent 2323f74 commit 0c76f3d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

common-npm-packages/azurermdeploycommon/webdeployment-common/webconfigutil.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ function replaceMultiple(text: string, substitutions: any): string {
1919
return text;
2020
}
2121

22+
2223
function addMissingParametersValue(appType: string, webConfigParameters) {
2324
var paramDefaultValue = {
2425
'node': {
@@ -95,14 +96,14 @@ export function addWebConfigFile(folderPath: any, webConfigParameters, rootDirec
9596
}
9697
} else if(appType == 'Go') {
9798
if (util.isNullOrUndefined(webConfigParameters['GoExeFileName'])
98-
|| util.isNullOrUndefined(webConfigParameters['GoExeFileName'].value)
99+
|| util.isNullOrUndefined(webConfigParameters['GoExeFileName'].value)
99100
|| webConfigParameters['GoExeFileName'].value.length <=0) {
100101
throw Error(tl.loc('GoExeNameNotPresent'));
101102
}
102103
selectedAppTypeParams['GoExeFilePath'] = rootDirectoryPath + "\\" + webConfigParameters['GoExeFileName'].value;
103104
} else if(appType == 'java_springboot') {
104105
if (util.isNullOrUndefined(webConfigParameters['JAR_PATH'])
105-
|| util.isNullOrUndefined(webConfigParameters['JAR_PATH'].value)
106+
|| util.isNullOrUndefined(webConfigParameters['JAR_PATH'].value)
106107
|| webConfigParameters['JAR_PATH'].value.length <= 0) {
107108
throw Error(tl.loc('JarPathNotPresent'));
108109
}

0 commit comments

Comments
 (0)