17 lines
486 B
Nim
17 lines
486 B
Nim
import strutils
|
|
import strformat
|
|
|
|
import ../model/command_type
|
|
import ../utils/run
|
|
export run
|
|
|
|
proc genCommand*(cmd: string, repo: string, further_args: seq[string]): string =
|
|
let args = further_args.join(" ")
|
|
let cmd = fmt"{BORG_BIN} {cmd} {repo} {args}"
|
|
return cmd
|
|
|
|
proc genDeleteCommand*(cmd: string, repo: string, archive: string, further_args: seq[string]): string =
|
|
let args = further_args.join(" ")
|
|
let cmd = fmt"{BORG_BIN} {cmd} {repo} {archive} {args}"
|
|
return cmd
|
|
|