Skip to content

Commit

Permalink
Merge pull request cs3org#3 from SamuAlfageme/fix_python_module_gener…
Browse files Browse the repository at this point in the history
…ation

Fix: make python module generation absolute to the right directory
  • Loading branch information
SamuAlfageme authored Dec 8, 2020
2 parents f1ef147 + d2dd932 commit f7d4b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit f7d4b1e

Please sign in to comment.