]> mj.ucw.cz Git - leo.git/commitdiff
Průvodce: Fixed a typo
authorMartin Mares <mj@ucw.cz>
Sat, 26 Mar 2022 23:20:22 +0000 (00:20 +0100)
committerMartin Mares <mj@ucw.cz>
Sat, 26 Mar 2022 23:26:34 +0000 (00:26 +0100)
mk-all

diff --git a/mk-all b/mk-all
index 1f540d4b9eb3f00cee5226760dd02654f1a095e3..82cde3a3bf439ebf5c7908320bdf6aed565b900c 100755 (executable)
--- 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