diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-12 22:09:08 +0100 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2008-11-12 22:09:08 +0100 |
commit | 82d73471a2bcbe03e5a8312a4328be1526feea67 (patch) | |
tree | e8ac101e6bda1446755a8f610c13e6e0e4a0a186 | |
parent | fd37a6b71e61b3931e8627bdd443e4a98eb4aa39 (diff) |
fix regression after wait_for running process refactoring
-rw-r--r-- | src/core/libs/lib-misc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/libs/lib-misc.sh b/src/core/libs/lib-misc.sh index 8236c0b..ce738b8 100644 --- a/src/core/libs/lib-misc.sh +++ b/src/core/libs/lib-misc.sh @@ -32,7 +32,7 @@ wait_for () { [ -z "$1" ] && die_error "wait_for needs an identifier to known on which command to wait!" - while [ -f /tmp/$1-running ] + while [ -f /home/arch/fifa/runtime/$1-running ] do #TODO: follow_progress dialog mode = nonblocking (so check and sleep is good), cli mode (tail -f )= blocking? (so check is probably not needed as it will be done) sleep 1 |