diff --git a/extensions/fablabchemnitz/boxes.py/boxes b/extensions/fablabchemnitz/boxes.py/boxes deleted file mode 100644 index 7ad985c6..00000000 --- a/extensions/fablabchemnitz/boxes.py/boxes +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/python3 -# EASY-INSTALL-SCRIPT: 'boxes==0.9','boxes' -__requires__ = 'boxes==0.9' -__import__('pkg_resources').run_script('boxes==0.9', 'boxes') diff --git a/extensions/fablabchemnitz/boxes.py/boxes.exe b/extensions/fablabchemnitz/boxes.py/boxes.exe old mode 100644 new mode 100755 diff --git a/extensions/fablabchemnitz/boxes.py/boxes_proxy.py b/extensions/fablabchemnitz/boxes.py/boxes_proxy.py index 70ef0e20..bed58d35 100644 --- a/extensions/fablabchemnitz/boxes.py/boxes_proxy.py +++ b/extensions/fablabchemnitz/boxes.py/boxes_proxy.py @@ -35,10 +35,7 @@ class boxesPyWrapper(inkex.GenerateExtension): if os.path.exists(box_file): os.remove(box_file) #remove previously generated box file at the beginning - if os.name == "nt": - cmd = "boxes.exe" - else: - cmd = "./boxes" + cmd = "boxes" #boxes.exe in this local dir (or if present in %PATH%), or boxes from $PATH in linux for arg in vars(self.options): if arg != "output" and arg != "ids" and arg != "selected_nodes": #inkex.utils.debug(str(arg) + " = " + str(getattr(self.options, arg)))