Skip to content

Instantly share code, notes, and snippets.

@jeffrngu
Created October 11, 2017 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffrngu/3c1cd7e36d4437881ccdb0bb9539137a to your computer and use it in GitHub Desktop.
Save jeffrngu/3c1cd7e36d4437881ccdb0bb9539137a to your computer and use it in GitHub Desktop.
Fix for incorrect bunddle path in PYTHONPATH
// Append bundle paths:
bundlePaths := getBundlePaths()
for _, v := range bundlePaths {
// paths = append(paths, v)
bundlePath := filepath.Join(workDir, v)
paths = append(paths, bundlePath)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment