diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-04-20 00:33:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-04-20 00:33:40 +0000 |
commit | 6336817a13f2b3dd95232fbbbebe513985a20294 (patch) | |
tree | 3677b054b11533b8d442632a176098b619337cdf /openwrt/scripts | |
parent | 6d35e9d0f580f95aa7a97366cf5a325543494f2d (diff) | |
download | mtk-20170518-6336817a13f2b3dd95232fbbbebe513985a20294.zip mtk-20170518-6336817a13f2b3dd95232fbbbebe513985a20294.tar.gz mtk-20170518-6336817a13f2b3dd95232fbbbebe513985a20294.tar.bz2 |
redirect find stderr to /dev/null in timestamp.pl
SVN-Revision: 3678
Diffstat (limited to 'openwrt/scripts')
-rwxr-xr-x | openwrt/scripts/timestamp.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/scripts/timestamp.pl b/openwrt/scripts/timestamp.pl index f6b06bc..1089221 100755 --- a/openwrt/scripts/timestamp.pl +++ b/openwrt/scripts/timestamp.pl @@ -4,7 +4,7 @@ use strict; sub get_ts($) { my $path = shift; my $ts = 0; - open FIND, "find $path -not -path \\*.svn\\* -and -not -path \\*CVS\\* |"; + open FIND, "find $path -not -path \\*.svn\\* -and -not -path \\*CVS\\* 2>/dev/null |"; while (<FIND>) { open FILE, "<$_"; my @stat = stat FILE; |