Skip to content

Commit

Permalink
Fix implicit extension creation (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmapetr authored Feb 14, 2023
1 parent c998a1f commit 6bda3d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ steps:
- script: node make.js test
displayName: 'Run Tests'

- script: node make.js packageprod
- script: node make.js createtest
displayName: 'Build test package'

- script: node make.js packagetest
- script: node make.js create
displayName: 'Build prod package'

- task: CopyFiles@2
Expand Down
4 changes: 2 additions & 2 deletions make.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ target.test = function() {
}
}

target.packageprod = function() {
target.create = function() {
banner('Creating PRODUCTION vsix...');

var prodManifestOverride = {
Expand All @@ -323,7 +323,7 @@ target.packageprod = function() {
createExtension(prodManifestOverride);
}

target.packagetest = function() {
target.createtest = function() {
banner('Creating TEST vsix...');

var devManifestOverride = {
Expand Down

0 comments on commit 6bda3d1

Please sign in to comment.