Skip to content
Prev Previous commit
format code
  • Loading branch information
dmitry-shibanov committed Nov 16, 2021
commit 204896dae5d30ec5ac5638f7dd029c066f592b11
2 changes: 1 addition & 1 deletion dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7154,7 +7154,7 @@ class PipenvCache extends cache_distributor_1.default {
getCacheGlobalDirectories() {
return __awaiter(this, void 0, void 0, function* () {
let virtualEnvRelativePath;
// Default virtualenv directories are hardcoded,
// Default virtualenv directories are hardcoded,
// because pipenv is not preinstalled on hosted images and virtualenv is not created:
// https://github.com/pypa/pipenv/blob/1daaa0de9a0b00d386c6baeb809d8d4ee6795cfd/pipenv/utils.py#L1990-L2002
if (process.platform === 'win32') {
Expand Down
2 changes: 1 addition & 1 deletion src/cache-distributions/pipenv-cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class PipenvCache extends CacheDistributor {
protected async getCacheGlobalDirectories() {
let virtualEnvRelativePath;

// Default virtualenv directories are hardcoded,
// Default virtualenv directories are hardcoded,
// because pipenv is not preinstalled on hosted images and virtualenv is not created:
// https://github.com/pypa/pipenv/blob/1daaa0de9a0b00d386c6baeb809d8d4ee6795cfd/pipenv/utils.py#L1990-L2002
if (process.platform === 'win32') {
Expand Down