From: Martin Mares Date: Sat, 26 Mar 2022 23:20:22 +0000 (+0100) Subject: Průvodce: Fixed a typo X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=a1614525530c4b4062b8ffc3b04cef602cf17349;p=leo.git Průvodce: Fixed a typo --- diff --git a/mk-all b/mk-all index 1f540d4..82cde3a 100755 --- a/mk-all +++ b/mk-all @@ -3,7 +3,7 @@ set -e make for a in 0 1 ; do for b in 0 1 ; do - out="output-" + out="output" case $a in 0) out="$out-dijk" ;; 1) out="$out-astar" ;; @@ -16,6 +16,6 @@ for a in 0 1 ; do esac echo "### Running with astar=$a bidir=$b ($out) ###" run/bin/leo -SGraph.AStar=$a -SGraph.BiDir=$b -SMap.SVGOutput=$out.svg - inkscape -Do output-$out.pdf output-$out.svg + inkscape -Do $out.pdf $out.svg done done