File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -56,12 +56,12 @@ config :exqlite, default_chunk_size: 100
56
56
In ` config/config.exs ` ,
57
57
58
58
``` elixir
59
- config :exqlite , make_force_build : false
59
+ config :exqlite , force_build : false
60
60
```
61
61
62
- * ` make_force_build ` - Set ` true ` to opt out of using precompiled artefacts.
63
- This option only affects the default configuration. For advanced configuation,
64
- this library will always compile natively.
62
+ * ` force_build ` - Set ` true ` to opt out of using precompiled artefacts.
63
+ This option only affects the default configuration. For advanced configuation,
64
+ this library will always compile natively.
65
65
66
66
## Advanced Configuration
67
67
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ defmodule Exqlite.MixProject do
12
12
compilers: [ :elixir_make ] ++ Mix . compilers ( ) ,
13
13
make_targets: [ "all" ] ,
14
14
make_clean: [ "clean" ] ,
15
+ make_force_build: Application . get_env ( :exqlite , :force_build , false ) ,
15
16
make_precompiler: make_precompiler ( ) ,
16
17
make_precompiler_url:
17
18
"https://github.com/elixir-sqlite/exqlite/releases/download/v#{ @ version } /@{artefact_filename}" ,
You can’t perform that action at this time.
0 commit comments