This repository was archived by the owner on May 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ function checkAndlogEnvironment(): void {
113
113
'\n' +
114
114
formatObject ( {
115
115
NODE_OPTIONS : NODE_OPTIONS || 'not defined' ,
116
- TZ ,
116
+ TZ : TZ || 'not defined' ,
117
117
} ) ,
118
118
) ,
119
119
)
@@ -128,17 +128,17 @@ function checkAndlogEnvironment(): void {
128
128
)
129
129
}
130
130
131
- if ( ! TZ ) {
132
- console . error (
133
- [
134
- '!!! TZ environment variable is required to be set, but was not set.' ,
135
- 'The runScript will exit and not continue further because of that,' ,
136
- 'please ensure the TZ variable and try again.' ,
137
- 'If you are running locally, you can add TZ=UTC to the local .env file.' ,
138
- ] . join ( '\n' ) ,
139
- )
140
- process . exit ( 1 )
141
- }
131
+ // if (!TZ) {
132
+ // console.error(
133
+ // [
134
+ // '!!! TZ environment variable is required to be set, but was not set.',
135
+ // 'The runScript will exit and not continue further because of that,',
136
+ // 'please ensure the TZ variable and try again.',
137
+ // 'If you are running locally, you can add TZ=UTC to the local .env file.',
138
+ // ].join('\n'),
139
+ // )
140
+ // process.exit(1)
141
+ // }
142
142
}
143
143
144
144
function formatObject ( obj : AnyObject ) : string {
You can’t perform that action at this time.
0 commit comments