Skip to content

Commit af79805

Browse files
committed
Fix Watch target SQLite path to use repo root
1 parent 47fe3ec commit af79805

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/Build/Program.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Target.create "EnsureDevCert" <| fun _ ->
5050
exec "dotnet" rootDir ["dev-certs"; "https"; "--trust"] |> Task.WaitAll
5151

5252
Target.create "Watch" <| fun _ ->
53-
let sqlitePath = appDir </> ".data" </> "app.db"
53+
let sqlitePath = rootDir </> ".data" </> "app.db"
5454

5555
let env =
5656
getEnvMap()

0 commit comments

Comments
 (0)