You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cli.ts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -145,17 +145,17 @@ export async function runner(
145
145
}
146
146
147
147
if(!flags.silent){
148
-
console.log(
149
-
`\n${dimLog('Downloading...')}\n${warningLog('Press Ctrl+C to abort')}`,
150
-
);
151
-
152
148
if(flags.insecure){
153
149
console.log(
154
150
warningLog(
155
-
'\nWarning: SSL certificate verification is disabled (--insecure). This makes the connection vulnerable to man-in-the-middle attacks. Use with caution.\n',
151
+
'\nWarning: SSL certificate verification is disabled (--insecure). This makes the connection vulnerable to man-in-the-middle attacks. Use with caution.',
156
152
),
157
153
);
158
154
}
155
+
156
+
console.log(
157
+
`${dimLog('Downloading...')}\n${warningLog('Press Ctrl+C to abort')}`,
0 commit comments