This repository was archived by the owner on Oct 23, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,6 @@ const originCwd = cwd();
40
40
const osScript = path . join ( rootDir , 'scripts/detectOS.sh' ) ;
41
41
const osType = execSync ( `bash ${ osScript } ` ) . toString ( ) . toLowerCase ( ) ;
42
42
43
- const experimentalTargets = [ 'quic-agent' ] ;
44
-
45
43
var allTargets = [ ] ;
46
44
47
45
if ( options . full ) {
@@ -130,8 +128,7 @@ function getPackList(targets) {
130
128
}
131
129
132
130
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 ;
135
132
return options . target . includes ( element . rules . name ) ;
136
133
} ) ;
137
134
if ( packList . length === 0 ) {
@@ -593,9 +590,6 @@ function packScripts() {
593
590
}
594
591
scriptItems . push ( 'app' ) ;
595
592
scriptItems . forEach ( ( m ) => {
596
- if ( experimentalTargets . includes ( m ) ) {
597
- return ;
598
- }
599
593
startCommands += '${bin}/daemon.sh start ' + m + ' $1\n' ;
600
594
stopCommands += '${bin}/daemon.sh stop ' + m + '\n' ;
601
595
} ) ;
You can’t perform that action at this time.
0 commit comments