Skip to content

Commit

Permalink
updating webappkind enum (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
aksm-ms authored Jul 14, 2020
1 parent 6c17269 commit 4b6424c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/actionparameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var WebAppKind;
exports.appKindMap = new Map([
['app', WebAppKind.Windows],
['app,linux', WebAppKind.Linux],
['app,container,xenon', WebAppKind.WindowsContainer],
['app,container,windows', WebAppKind.WindowsContainer],
['app,linux,container', WebAppKind.LinuxContainer]
]);
class ActionParameters {
Expand Down
2 changes: 1 addition & 1 deletion src/actionparameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export enum WebAppKind {
export const appKindMap = new Map([
[ 'app', WebAppKind.Windows ],
[ 'app,linux', WebAppKind.Linux ],
[ 'app,container,xenon', WebAppKind.WindowsContainer ],
[ 'app,container,windows', WebAppKind.WindowsContainer ],
[ 'app,linux,container', WebAppKind.LinuxContainer ]
]);

Expand Down

0 comments on commit 4b6424c

Please sign in to comment.