Skip to content

Commit

Permalink
Fix issue #215, Allow spaces in Python pipeline name (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shivakishore14 authored and Skarlso committed Oct 6, 2019
1 parent 4c6678f commit da70f3b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions workers/pipeline/update_pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ package pipeline
import (
"errors"
"fmt"
"github.com/gaia-pipeline/gaia/helper/filehelper"
"os"
"os/exec"
"path/filepath"

"github.com/gaia-pipeline/gaia/helper/filehelper"

"github.com/gaia-pipeline/gaia"
)

Expand All @@ -17,7 +18,7 @@ var (

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

// Ruby gem binary name.
rubyGemName = "gem"
Expand Down

0 comments on commit da70f3b

Please sign in to comment.