diff options
author | Florian Pritz <bluewind@xinu.at> | 2011-07-11 09:58:43 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2011-07-11 09:58:43 +0200 |
commit | 6f764ff5676146206a77e62d27aa8ba469a11225 (patch) | |
tree | c0e6e0145b6b3fea6ad1666e0b02eaffe9bbe8fa | |
parent | 89de8ec818faba8b71b7b5163960698504bb0950 (diff) | |
download | bootrun-6f764ff5676146206a77e62d27aa8ba469a11225.tar.gz bootrun-6f764ff5676146206a77e62d27aa8ba469a11225.tar.xz |
add missing &
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | bootrun | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ start() { user="$(cut -d: -f1 <<< "$line")" file="$(cut -d: -f2 <<< "$line")/.bootrun" if [ -x "$file" ]; then - start_run "$file" "$user" &>> /var/log/bootrun.log + start_run "$file" "$user" &>> /var/log/bootrun.log & fi done } |