mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-12-22 08:16:25 +00:00
support for absolute paths
This commit is contained in:
parent
81f513d77b
commit
06ce8180fb
@ -5,13 +5,17 @@ import { getEnvFromBackend } from './backend'
|
|||||||
import { Locations, Location } from './types'
|
import { Locations, Location } from './types'
|
||||||
import { exec, ConfigError } from './utils'
|
import { exec, ConfigError } from './utils'
|
||||||
import { CONFIG_FILE } from './config'
|
import { CONFIG_FILE } from './config'
|
||||||
import { resolve, dirname } from 'path'
|
import { resolve, dirname, isAbsolute } from 'path'
|
||||||
|
|
||||||
export const backupSingle = (name: string, from: string, to: string) => {
|
export const backupSingle = (name: string, from: string, to: string) => {
|
||||||
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 pathRelativeToConfigFile = resolve(dirname(CONFIG_FILE), from)
|
|
||||||
|
// Check if is an absolute path, otherwise get the path relative to the config file
|
||||||
|
const pathRelativeToConfigFile = isAbsolute(from)
|
||||||
|
? from
|
||||||
|
: resolve(dirname(CONFIG_FILE), from)
|
||||||
|
|
||||||
const cmd = exec('restic', ['backup', pathRelativeToConfigFile], {
|
const cmd = exec('restic', ['backup', pathRelativeToConfigFile], {
|
||||||
env: getEnvFromBackend(backend),
|
env: getEnvFromBackend(backend),
|
||||||
|
Loading…
Reference in New Issue
Block a user