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 +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ 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
+
43
45
var allTargets = [ ] ;
44
46
45
47
if ( options . full ) {
@@ -132,7 +134,7 @@ function getPackList(targets) {
132
134
133
135
var packList = targets . filter ( ( element ) => {
134
136
// Don't include QUIC agent by default until CI is added for QUIC SDK.
135
- if ( options . target . includes ( 'all' ) && element . rules . name !== 'quic-agent' ) return true ;
137
+ if ( options . target . includes ( 'all' ) && ! experimentalTargets . includes ( element . rules . name ) ) return true ;
136
138
return options . target . includes ( element . rules . name ) ;
137
139
} ) ;
138
140
if ( packList . length === 0 ) {
@@ -599,6 +601,9 @@ function packScripts() {
599
601
}
600
602
scriptItems . push ( 'app' ) ;
601
603
scriptItems . forEach ( ( m ) => {
604
+ if ( experimentalTargets . includes ( m ) ) {
605
+ return ;
606
+ }
602
607
startCommands += '${bin}/daemon.sh start ' + m + ' $1\n' ;
603
608
stopCommands += '${bin}/daemon.sh stop ' + m + '\n' ;
604
609
} ) ;
You can’t perform that action at this time.
0 commit comments