Skip to content

Commit da70f3b

Browse files
Shivakishore14Skarlso
authored andcommitted
Fix issue #215, Allow spaces in Python pipeline name (#216)
1 parent 4c6678f commit da70f3b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

workers/pipeline/update_pipeline.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ package pipeline
33
import (
44
"errors"
55
"fmt"
6-
"github.com/gaia-pipeline/gaia/helper/filehelper"
76
"os"
87
"os/exec"
98
"path/filepath"
109

10+
"github.com/gaia-pipeline/gaia/helper/filehelper"
11+
1112
"github.com/gaia-pipeline/gaia"
1213
)
1314

@@ -17,7 +18,7 @@ var (
1718

1819
// pythonPipInstallCmd is the command used to install the python distribution
1920
// package.
20-
pythonPipInstallCmd = ". bin/activate; python -m pip install %s.tar.gz"
21+
pythonPipInstallCmd = ". bin/activate; python -m pip install '%s.tar.gz'"
2122

2223
// Ruby gem binary name.
2324
rubyGemName = "gem"

0 commit comments

Comments
 (0)