fix windows require statement
The quotes would push ```lua "require 'tools/script_manager'" ``` instead of ```lua require 'tools/script_manager' ``` to the file
This commit is contained in:
parent
b391509be6
commit
6ac163b207
1 changed files with 2 additions and 2 deletions
|
@ -60,9 +60,9 @@ The recommended way to enable and disable specific scripts is using the script m
|
||||||
|
|
||||||
echo 'require "tools/script_manager"' > ~/.config/darktable/luarc
|
echo 'require "tools/script_manager"' > ~/.config/darktable/luarc
|
||||||
|
|
||||||
### Windows
|
### Windows ( via command prompt )
|
||||||
|
|
||||||
echo "require 'tools/script_manager'" > %LOCALAPPDATA%\darktable\luarc
|
echo require 'tools/script_manager' > %LOCALAPPDATA%\darktable\luarc
|
||||||
|
|
||||||
### Snap
|
### Snap
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue