From 4d38fb9841d25c6bd5779824a16975ed9ab421b2 Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Thu, 25 Jan 2018 08:36:12 +0100 Subject: Fix dry-run handling --- setuptools/command/easy_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setuptools/command/easy_install.py') diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index b7396b85..a6f61436 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -828,7 +828,7 @@ class easy_install(Command): target = os.path.join(self.script_dir, script_name) self.add_output(target) - if not self.dry_run: + if self.dry_run: return mask = current_umask() -- cgit v1.2.1