Skip to content

Commit

Permalink
fix custom modules by creating valid url from documented syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemarsden authored Oct 13, 2023
1 parent 4dfc93c commit 6afc1cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/module/shortcuts/shortcuts.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func GetModule(name string) (data.ModuleConfig, error) {
}
hash = parts[1]
if strings.Contains(name, "/") {
repo = parts[0]
repo = fmt.Sprintf("https://%s", parts[0])
} else {
repo = fmt.Sprintf("https://github.com/bacalhau-project/lilypad-module-%s", parts[0])
}
Expand Down

0 comments on commit 6afc1cc

Please sign in to comment.