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:
Djkáťo 2023-06-07 14:57:01 +02:00 committed by GitHub
parent b391509be6
commit 6ac163b207
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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