🎨 Optimizing the user prompts during command usage

This commit is contained in:
Tw93
2023-03-02 17:47:19 +08:00
parent fe754f663e
commit 129893c539
6 changed files with 9 additions and 9 deletions

2
bin/utils/url.ts vendored
View File

@@ -42,6 +42,6 @@ export function normalizeUrl(urlToNormalize: string): string {
if (isurl(urlWithProtocol)) {
return urlWithProtocol;
} else {
throw new Error(`Your url "${urlWithProtocol}" is invalid`);
throw new Error(`The URL "${urlWithProtocol}" you provided is invalid.`);
}
}