From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS22989 208.118.235.0/24 X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: dtas-all@80x24.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id DAC22633934 for ; Thu, 21 May 2015 07:47:59 +0000 (UTC) Received: from localhost ([::1]:55738 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YvLCw-00065Z-4U for dtas-all@80x24.org; Thu, 21 May 2015 03:47:58 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48085) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YvLCu-00065U-IZ for dtas-all@nongnu.org; Thu, 21 May 2015 03:47:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YvLCp-0002zw-Iu for dtas-all@nongnu.org; Thu, 21 May 2015 03:47:56 -0400 Received: from dcvr.yhbt.net ([64.71.152.64]:55212) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YvLCp-0002zS-DJ for dtas-all@nongnu.org; Thu, 21 May 2015 03:47:51 -0400 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id EFB52633934; Thu, 21 May 2015 07:47:48 +0000 (UTC) From: Eric Wong To: Subject: [PATCH] dtas-*edit: fix inotify watch invocations Date: Thu, 21 May 2015 07:47:47 +0000 Message-Id: <1432194467-30759-1-git-send-email-e@80x24.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 64.71.152.64 Cc: Eric Wong X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dtas-all-bounces+dtas-all=80x24.org@nongnu.org Sender: dtas-all-bounces+dtas-all=80x24.org@nongnu.org Broken by commit c02f0b8182b35df1a318418bbd0036c00be93b5c ("source/splitfx: allow watching extra external scripts") Oops --- bin/dtas-sinkedit | 2 +- bin/dtas-sourceedit | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/dtas-sinkedit b/bin/dtas-sinkedit index 3a4bda8..f0b222c 100755 --- a/bin/dtas-sinkedit +++ b/bin/dtas-sinkedit @@ -78,7 +78,7 @@ else rset = [ sev ] if watch ino = DTAS::Watchable::InotifyReadableIter.new - ino.watch_file(tmp_path, do_update) + ino.watch_files(tmp_path, do_update) rset << ino end diff --git a/bin/dtas-sourceedit b/bin/dtas-sourceedit index bf9e829..fba0511 100755 --- a/bin/dtas-sourceedit +++ b/bin/dtas-sourceedit @@ -65,7 +65,7 @@ else rset = [ sev ] if watch ino = DTAS::Watchable::InotifyReadableIter.new - ino.watch_file(tmp_path, do_update) + ino.watch_files(tmp_path, do_update) rset << ino end -- EW