Skip to content

Commit

Permalink
fix: invetory path in demo project
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Jan 27, 2024
1 parent 4e2ca77 commit 981ab6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/projects/projects.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func createDemoProject(projectID int, store db.Store) (err error) {
devInv, err = store.CreateInventory(db.Inventory{
Name: "Dev",
ProjectID: projectID,
Inventory: "/invs/dev/hosts",
Inventory: "invs/dev/hosts",
Type: "file",
SSHKeyID: &noneKey.ID,
})
Expand All @@ -111,7 +111,7 @@ func createDemoProject(projectID int, store db.Store) (err error) {
prodInv, err = store.CreateInventory(db.Inventory{
Name: "Prod",
ProjectID: projectID,
Inventory: "/invs/prod/hosts",
Inventory: "invs/prod/hosts",
Type: "file",
SSHKeyID: &noneKey.ID,
})
Expand Down

0 comments on commit 981ab6b

Please sign in to comment.