Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit a016924

Browse files
committed
Remove quic-agent from experimental feature list.
It will be included and started by default.
1 parent 6b3b82a commit a016924

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

scripts/pack.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ const originCwd = cwd();
4040
const osScript = path.join(rootDir, 'scripts/detectOS.sh');
4141
const osType = execSync(`bash ${osScript}`).toString().toLowerCase();
4242

43-
const experimentalTargets = ['quic-agent'];
44-
4543
var allTargets = [];
4644

4745
if (options.full) {
@@ -130,8 +128,7 @@ function getPackList(targets) {
130128
}
131129

132130
var packList = targets.filter((element) => {
133-
// Don't include QUIC agent by default until CI is added for QUIC SDK.
134-
if (options.target.includes('all') && !experimentalTargets.includes(element.rules.name)) return true;
131+
if (options.target.includes('all')) return true;
135132
return options.target.includes(element.rules.name);
136133
});
137134
if (packList.length === 0) {
@@ -593,9 +590,6 @@ function packScripts() {
593590
}
594591
scriptItems.push('app');
595592
scriptItems.forEach((m) => {
596-
if (experimentalTargets.includes(m)) {
597-
return;
598-
}
599593
startCommands += '${bin}/daemon.sh start ' + m + ' $1\n';
600594
stopCommands += '${bin}/daemon.sh stop ' + m + '\n';
601595
});

0 commit comments

Comments
 (0)