From 92392f9796f85451b5207250d734c675d5709a5a Mon Sep 17 00:00:00 2001 From: Paul Wilde Date: Tue, 27 Aug 2024 19:35:56 +0100 Subject: [PATCH] version bump for testing --- norg/borg/execute.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/norg/borg/execute.nim b/norg/borg/execute.nim index 05b1f32..ecba57d 100644 --- a/norg/borg/execute.nim +++ b/norg/borg/execute.nim @@ -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