Skip to content

Commit 5b6142e

Browse files
Fix the compile Command (#184)
We were trying to install pyperformance from the wrong directory.
1 parent 705ca02 commit 5b6142e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyperformance/compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def install_performance(self):
396396
cmd = [self.program, '-u', '-m', 'pip', 'install']
397397

398398
if pyperformance.is_dev():
399-
cmd.extend(('-e', pyperformance.PKG_ROOT))
399+
cmd.append(os.path.dirname(pyperformance.PKG_ROOT))
400400
else:
401401
version = pyperformance.__version__
402402
cmd.append('pyperformance==%s' % version)

0 commit comments

Comments
 (0)