Skip to content

Commit

Permalink
Merge pull request #78 from justinmerrell/main
Browse files Browse the repository at this point in the history
fix: forgot to make a change
  • Loading branch information
DireLines authored Jan 30, 2024
2 parents 3dd8d71 + 26773a3 commit 768598a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion cmd/project/example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ name = "placeholder"

[project]
uuid = "placeholder"
name = "placeholder"
base_image = "runpod/base:0.4.4-cuda11.8.0"
gpu_types = [
"NVIDIA RTX A4000",
Expand Down
4 changes: 2 additions & 2 deletions cmd/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func selectStarterTemplate() (template string, err error) {
}
templates, err := starterTemplates.ReadDir("starter_examples")
if err != nil {
fmt.Println("Something went wrong trying to fetch starter templates")
fmt.Println("Something went wrong trying to fetch the example")
fmt.Println(err)
return "", err
}
Expand All @@ -110,7 +110,7 @@ func selectStarterTemplate() (template string, err error) {
options = append(options, StarterTemplateOption{Name: template.Name(), Value: template.Name()})
}
getStarterTemplate := promptui.Select{
Label: "Select a Starter Template:",
Label: "Select a Starter Example:",
Items: options,
Templates: promptTemplates,
}
Expand Down

0 comments on commit 768598a

Please sign in to comment.