From 046b741e0c21044595f7cdda5bb0c3e5eef24b7b Mon Sep 17 00:00:00 2001 From: Sasha Case Date: Mon, 17 Dec 2018 15:10:16 +1100 Subject: [PATCH] Fixing bug due to virtualenv.py moving location in source --- lib/virtualenv.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/virtualenv.js b/lib/virtualenv.js index 29350dc..7cfd6cb 100644 --- a/lib/virtualenv.js +++ b/lib/virtualenv.js @@ -288,7 +288,7 @@ VirtualEnv.prototype._setMeta = function _setMeta(key, value) { } VirtualEnv.prototype._getPathToSourceForVersion = function _getPathToSourceForVersion(version) { - return path.join(this._virtualenvSourcesHome, "virtualenv-" + version) + return path.join(this._virtualenvSourcesHome, "virtualenv-" + version, "src") } VirtualEnv.prototype._virtualenvIsUnchanged = function _virtualenvIsUnchanged() {