Compare commits

...

3 commits

Author SHA1 Message Date
92761ec090
change 2>log_err.txt to 2>&1
redicrects the sterr to stdout so it can all be in the same file
2023-06-07 17:04:40 +02:00
6ac163b207
fix windows require statement
The quotes would push 
```lua
"require 'tools/script_manager'"
```
instead of
```lua
require 'tools/script_manager'
```
to the file
2023-06-07 14:57:01 +02:00
b391509be6
Update troubleshooting.md
Added `2> log_err.txt` to the command and explained what it does. This is necessary as stderr will otherwise get outputted to the console instead of the file.
2023-06-07 14:48:27 +02:00
2 changed files with 3 additions and 3 deletions

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
### Windows
### Windows ( via command prompt )
echo "require 'tools/script_manager'" > %LOCALAPPDATA%\darktable\luarc
echo require 'tools/script_manager' > %LOCALAPPDATA%\darktable\luarc
### Snap

View file

@ -22,4 +22,4 @@ Open a terminal and start darktable with the command `/Applications/darktable.ap
### Windows
Open a command prompt. Start darktable with the command "C:\Program Files\darktable\bin\darktable" -d lua > log.txt. This provides debugging information to give you insight into what is happening.
Open a command prompt. Start darktable with the command `"C:\Program Files\darktable\bin\darktable" -d lua > log.txt 2>&1`. This provides debugging information to give you insight into what is happening.