summaryrefslogtreecommitdiff
path: root/check_xref
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2012-07-04 17:41:16 +0100
committerSimon MacMullen <simon@rabbitmq.com>2012-07-04 17:41:16 +0100
commit82b008482ae58b0f10af773b473f1ebd19e818b5 (patch)
tree2af9bc54b3f5049e7326bdf8669920e67c71851b /check_xref
parent44a5aa0e9b97e1337a51eebb49aeaf4cd00e768a (diff)
downloadrabbitmq-server-82b008482ae58b0f10af773b473f1ebd19e818b5.tar.gz
Cosmetic: starting a line with "_ =" is meaningless.
Diffstat (limited to 'check_xref')
-rwxr-xr-xcheck_xref4
1 files changed, 2 insertions, 2 deletions
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) ->