commit c7389c188334f97ee20e3bd99e55738058065e3d
parent 899995b012ec64851bc7e35dd81a409a4cd7d270
Author: sin <sin@2f30.org>
Date: Fri, 10 Oct 2014 11:52:15 +0100
Fix whitespace issues
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/rat-autoanswer b/rat-autoanswer
@@ -3,7 +3,7 @@
# Usage:
# rat-autoanswer <script>
# Wait until incomin call and spawn <script> to handle it
-# script will have voice data piped into stdin and is expected
+# script will have voice data piped into stdin and is expected
# to produce response' voice data into stdout
LIBRARY_LOCATION=`dirname $0`
@@ -13,10 +13,10 @@ export PATH=$LIBRARY_LOCATION:$PATH
while true; do
log "Monitoring for new call"
monitor_pending call
-
+
log "Call started"
$*
-
+
log "Call finished"
sleep 1
done