mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-12-22 16:26:25 +00:00
simplify for
This commit is contained in:
parent
d0cda7f1d5
commit
336f44e9dc
@ -10,8 +10,8 @@ import { exec, ConfigError, pathRelativeToConfigFile, getFlagsFromLocation } fro
|
|||||||
export const backupSingle = (name: string, to: string, location: Location) => {
|
export const backupSingle = (name: string, to: string, location: Location) => {
|
||||||
if (!config) throw ConfigError
|
if (!config) throw ConfigError
|
||||||
const writer = new Writer(name + to.blue + ' : ' + 'Backing up... ⏳')
|
const writer = new Writer(name + to.blue + ' : ' + 'Backing up... ⏳')
|
||||||
const backend = config.backends[to]
|
|
||||||
|
|
||||||
|
const backend = config.backends[to]
|
||||||
const path = pathRelativeToConfigFile(location.from)
|
const path = pathRelativeToConfigFile(location.from)
|
||||||
|
|
||||||
const cmd = exec(
|
const cmd = exec(
|
||||||
@ -27,13 +27,12 @@ export const backupSingle = (name: string, to: string, location: Location) => {
|
|||||||
export const backupLocation = (name: string, location: Location) => {
|
export const backupLocation = (name: string, location: Location) => {
|
||||||
const display = name.yellow + ' ▶ '
|
const display = name.yellow + ' ▶ '
|
||||||
const filler = new Array(name.length + 3).fill(' ').join('')
|
const filler = new Array(name.length + 3).fill(' ').join('')
|
||||||
if (Array.isArray(location.to)) {
|
let first = true
|
||||||
let first = true
|
|
||||||
for (const t of location.to) {
|
for (const t of Array.isArray(location.to) ? location.to : [location.to]) {
|
||||||
backupSingle(first ? display : filler, t, location)
|
backupSingle(first ? display : filler, t, location)
|
||||||
if (first) first = false
|
if (first) first = false
|
||||||
}
|
}
|
||||||
} else backupSingle(display, location.from, location)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const backupAll = (locations?: Locations) => {
|
export const backupAll = (locations?: Locations) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user