Skip to content

Commit

Permalink
Fix relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
sfowl committed Nov 10, 2023
1 parent 7aaa54f commit 4e86e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/scan/ruby.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func GetRubyDeps(path string) (map[string]string, error) {
for _, e := range entries {
filename := e.Name()
if strings.HasSuffix(filename, ".gemspec") {
gemspec = filename
gemspec = filepath.Join(baseDir, filename)
break
}
}
Expand Down

0 comments on commit 4e86e79

Please sign in to comment.