Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
fix for python detection
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Mak <[email protected]>
  • Loading branch information
makandre authored and sghung committed Sep 23, 2019
1 parent bf9120f commit b350507
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions utils/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ func DetermineProjectInfo(projectPath string) (string, string) {
language = "swift"
buildType = "swift"
}
if PathExists(path.Join(projectPath, "Pipfile")) {
language = "python"
buildType = "docker"
}
return language, buildType
}

Expand Down

0 comments on commit b350507

Please sign in to comment.