From d2dd932e779b857d8cc11d5c124c1eecf2c22cc3 Mon Sep 17 00:00:00 2001 From: Samuel Alfageme Sainz Date: Tue, 8 Dec 2020 12:53:33 +0100 Subject: [PATCH] Fix: make python module generation absolute to the right directory --- build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.go b/build.go index 92d2b04..1e1e90a 100644 --- a/build.go +++ b/build.go @@ -383,7 +383,7 @@ func buildPython() { var initFiles []string for _, f := range modules { - initPy := f + "/__init__.py" + initPy := fmt.Sprintf("%s/%s/%s", "build/python-cs3apis", f, "__init__.py") initFiles = append(initFiles, initPy) }