From 00649c879c6e0b33518bee0607f4666f34d3dc65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan-David=20Schr=C3=B6der?= Date: Tue, 3 Nov 2020 18:03:52 +0100 Subject: [PATCH] Avoid shell export errors when existing PATH has spaces (2) --- examples/stylit/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/stylit/run.sh b/examples/stylit/run.sh index b775bfe..3e70a9e 100755 --- a/examples/stylit/run.sh +++ b/examples/stylit/run.sh @@ -1,5 +1,5 @@ #!/bin/sh -export PATH=../../bin:$PATH +export PATH="../../bin:$PATH" ebsynth -style source_style.png \ -guide source_fullgi.png target_fullgi.png -weight 0.5 \