Cosmetic: starting a line with "_ =" is meaningless.

This commit is contained in:
Simon MacMullen 2012-07-04 17:41:16 +01:00
parent 19f554ed69
commit 6ba236af1a
1 changed files with 2 additions and 2 deletions

View File

@ -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) ->