From 82b008482ae58b0f10af773b473f1ebd19e818b5 Mon Sep 17 00:00:00 2001 From: Simon MacMullen Date: Wed, 4 Jul 2012 17:41:16 +0100 Subject: Cosmetic: starting a line with "_ =" is meaningless. --- check_xref | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'check_xref') diff --git a/check_xref b/check_xref index 55458c66..6eb89e15 100755 --- a/check_xref +++ b/check_xref @@ -32,7 +32,7 @@ main([PluginsDir|Argv]) -> LibDir = filename:join(Cwd, "lib"), case filelib:is_dir(LibDir) of false -> ok; - true -> _ = os:cmd("rm -rf " ++ LibDir) + true -> os:cmd("rm -rf " ++ LibDir) end, try @@ -40,7 +40,7 @@ main([PluginsDir|Argv]) -> after %% TODO: bootstrap file_handle_cache and use %% rabbit_file:recursive_delete instead of this... - _ = os:cmd("rm -rf " ++ LibDir) + os:cmd("rm -rf " ++ LibDir) end. check(Cwd, PluginsDir, LibDir, Checks) -> -- cgit v1.2.1