version bump for testing

This commit is contained in:
Paul Wilde 2024-08-27 19:35:56 +01:00
parent cbe0a4f9d3
commit 92392f9796

View file

@ -17,7 +17,7 @@ proc genCreateCommand*(repo: string, sources: seq[string], stats: bool, further_
if not stats: stats_flag = ""
var source_dirs = ""
for source in sources:
source_dirs &= fmt""""{source}""""
source_dirs &= fmt""" "{source}" """
let cmd = fmt"{BORG_BIN} create {stats_flag} {repo} {source_dirs} {args}"
return cmd