rebuild links

This commit is contained in:
cupcakearmy 2020-05-17 15:37:38 +02:00
parent c138ac9882
commit da7b70c7a7
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
2 changed files with 5 additions and 6 deletions

View File

@ -51,9 +51,9 @@ export const normalizeAndCheckLocations = (config: Config) => {
for (const [name, { from, to, cron, ...rest }] of Object.entries(config.locations)) {
if (!from)
throw new Error(`The location "${name.blue}" is missing the "${'from'.underline.red}" source folder. See https://git.io/Jf0Hw`)
throw new Error(`The location "${name.blue}" is missing the "${'from'.underline.red}" source folder. See https://git.io/Jf0xw`)
if (!to || (Array.isArray(to) && !to.length))
throw new Error(`The location "${name.blue}" has no backend "${'to'.underline.red}" to save the backups. See https://git.io/Jf0Hw`)
throw new Error(`The location "${name.blue}" has no backend "${'to'.underline.red}" to save the backups. See https://git.io/Jf0xw`)
for (const t of makeArrayIfIsNot(to))
checkDestination(t, name)
@ -62,8 +62,7 @@ export const normalizeAndCheckLocations = (config: Config) => {
try {
CronParser.parseExpression(cron)
} catch {
// TODO provide link to docs
throw new Error(`The location "${name.blue}" has an invalid ${'cron'.underline.red} entry`)
throw new Error(`The location "${name.blue}" has an invalid ${'cron'.underline.red} entry. See https://git.io/Jf0xP`)
}
}
}
@ -113,7 +112,7 @@ export const init = (): Config => {
'\n' +
OLD_CONFIG_FILE +
'\n' +
'What? Why? '.grey + 'https://git.io/Jv2D0'.underline.grey +
'What? Why? '.grey + 'https://git.io/Jf0xK'.underline.grey +
'\n'
)
}

View File

@ -228,7 +228,7 @@ export const help = () => {
'\n help Show help' +
'\n' +
'\nExamples: '.yellow +
'https://git.io/fjVbg' +
'https://git.io/Jf0x6' +
'\n',
)
}