From 18d857668edc5d1900cfb62081d45de8b4d8c897 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sat, 6 Feb 2021 12:30:27 +0100 Subject: Small fixes, find svg-flatten in user pip install --- svg-flatten/src/main.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'svg-flatten/src') diff --git a/svg-flatten/src/main.cpp b/svg-flatten/src/main.cpp index 2b996f3..d96785b 100644 --- a/svg-flatten/src/main.cpp +++ b/svg-flatten/src/main.cpp @@ -352,16 +352,22 @@ int main(int argc, char **argv) { int usvg_rc=-1; for (int i=0; i<3; i++) { const char *usvg_envvar; - if (i == 0) { + switch (i) { + case 0: if ((usvg_envvar = getenv("USVG")) == NULL) { continue; } else { command_line[0] = "usvg"; } - } else if (i == 1) { + break; + + case 1: command_line[0] = "usvg"; - } else { + break; + + case 2: command_line[0] = loc_in_home.c_str(); + break; } struct subprocess_s subprocess; -- cgit