Skip to content

Commit 73a8b66

Browse files
committed
release-0.6.0
1 parent e759602 commit 73a8b66

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

bin/qax

0 Bytes
Binary file not shown.

src/extract.nim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import strformat
21
import zip/zipfiles
32
import tables, strutils, algorithm, terminaltables
43
import os
@@ -103,4 +102,4 @@ Options:
103102
z.extractFile(data, dest)
104103
else:
105104
stderr.writeLine("Skipping ", art.basename, ": no data found.")
106-
105+

src/provenance.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,11 +188,11 @@ Options:
188188
stderr.writeLine("[provenance] Dot file saved to: ", args["--dotfile"], "")
189189
if args["--pdf"]:
190190
let font = $args["--font"]
191-
let command = "dot -O -Tpdf -Nfontname=\"" & font & "\" -Efontname=\""& font & "\" " & $args["--dotfile"]
191+
let command = "dot -O -Tpdf -Nfontname=\"" & font & "\" -Efontname=\"" & font & "\" " & $args["--dotfile"]
192192
let dotRun = execCmdEx(command, options = {})
193193
if dotRun.exitCode != 0:
194194
stderr.writeLine("[provenance] Unable to generate PDF file, is dot installed?")
195195
else:
196196
stderr.writeLine("[provenance] PDF saved to: ", args["--dotfile"], ".pdf")
197197
#dot -O -Tpdf -Nfontname=Helvetica -Efontname=Helvetica ciao
198-
198+

test/all.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ echo " $(tput setaf 5)$($BIN | grep version)$(tput setaf 0)"
2424
echo
2525
echo -e "$B[0] Synopsis$N"
2626
for i in list citations provenance extract;
27-
do
28-
./bin/qax_mac $i --help | grep -w $i | grep Usage >/dev/null && echo -e " $OK Help for '$i': found";
27+
do
28+
$BIN $i --help | grep -w $i | grep Usage >/dev/null && echo -e " $OK Help for '$i': found";
2929
done
3030

3131

0 commit comments

Comments
 (0)