Skip to content

Commit 4634758

Browse files
committed
Fix build
1 parent f452efe commit 4634758

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ instance/
7070

7171
# Sphinx documentation
7272
docs/_build/
73+
docs-src/_build
7374

7475
# PyBuilder
7576
target/

Build.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Target.create "Clean" (fun _ ->
2121

2222
Target.create "Build" (fun _ ->
2323
Shell.mkdir buildPath
24-
run dotnet $"fable-py -c Release -p {cliPath} --exclude Fable.Core --outDir {buildPath}" srcPath
24+
run dotnet $"fable-py --exclude Fable.Core --outDir {buildPath}" srcPath
2525
)
2626

2727
Target.create "Run" (fun _ ->
@@ -31,7 +31,7 @@ Target.create "Run" (fun _ ->
3131
Target.create "Test" (fun _ ->
3232
run dotnet "build" testsPath
3333
[ "native", dotnet "run" testsPath
34-
"python", dotnet $"fable-py -c Release -p {cliPath} --exclude Fable.Core --outDir {buildPath}/tests" testsPath
34+
"python", dotnet $"fable-py --outDir {buildPath}/tests" testsPath
3535
]
3636
|> runParallel
3737
run pytest $"{buildPath}/tests" ""

0 commit comments

Comments
 (0)