Skip to content

Instantly share code, notes, and snippets.

@jeffrngu
jeffrngu / gist:3c1cd7e36d4437881ccdb0bb9539137a
Created October 11, 2017 19:49
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)
}