File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 16
16
* See the License for the specific language governing permissions and
17
17
* limitations under the License.
18
18
*/
19
- //fsdj
19
+
20
20
import { _getProvider , FirebaseApp , getApp } from '@firebase/app' ;
21
21
import {
22
22
Analytics ,
@@ -63,8 +63,6 @@ declare module '@firebase/component' {
63
63
}
64
64
}
65
65
66
- console . log ( 'hi' ) ;
67
-
68
66
/**
69
67
* Returns an {@link Analytics} instance for the given app.
70
68
*
Original file line number Diff line number Diff line change @@ -136,7 +136,10 @@ async function main() {
136
136
await exec ( `echo "BLOCKING_FAILURE=false" >> $GITHUB_OUTPUT` ) ;
137
137
} catch ( e ) {
138
138
const error = e as Error ;
139
- if ( error . message . match ( 'No changesets present' ) ) {
139
+ if (
140
+ error . message . match ( 'No changesets present' ) ||
141
+ error . message . match ( 'no changesets were found' )
142
+ ) {
140
143
await exec ( `echo "BLOCKING_FAILURE=false" >> $GITHUB_OUTPUT` ) ;
141
144
} else {
142
145
const messageLines = error . message . replace ( / 🦋 e r r o r / g, '' ) . split ( '\n' ) ;
You can’t perform that action at this time.
0 commit comments