More README polish, redirect STDERR to log

This commit is contained in:
Salt 2019-06-21 18:24:25 -05:00
parent 5bb9bda2d3
commit 3739e7b033
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
## Installation
Execute `firestarter` as your `.xinitrc`, either by replacing the file or by `exec`ing it after performing your own basic setup. You do not need the rest of the files in the repository, but a `git clone` and a regular `git pull` *is* an effective way of keeping the script up-to-date.
Execute `firestarter` in your `.xinitrc`, either by replacing the file or by `exec`ing it after performing your own basic setup. You do not need the rest of the files in the repository, but a `git clone` and a regular `git pull` *is* an effective way of keeping the script up-to-date.
## Configuration

View File

@ -390,7 +390,7 @@ step_execute() {
mv "$logfile" "$logfile.old"
fi
if ! [ "$dryrun" = "1" ]; then
bash -c "$execline" > "$logfile" &
bash -c "$execline" > "$logfile" 2>&1 &
fi
break
else