Skip to content

Commit ec96acc

Browse files
committed
Filter out AppGallery during regular deploy
1 parent 8f4031d commit ec96acc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎main.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2510,7 +2510,7 @@ function processPrivateCommand (botId, bot, msg, command, commandArgsRaw) {
25102510
let track = null;
25112511
if (command === '/deploy_' + distributionPlatform) {
25122512
track = 'production';
2513-
} else if (track !== 'huawei' && Array.isArray(supportedTracks) && supportedTracks.includes(buildType)) {
2513+
} else if (distributionPlatform !== 'huawei' && Array.isArray(supportedTracks) && supportedTracks.includes(buildType)) {
25142514
track = buildType === 'stable' ? 'production' : buildType;
25152515
}
25162516
if (track) {

0 commit comments

Comments
 (0)