We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d064e13 commit 37f604cCopy full SHA for 37f604c
src/SPC/builder/LibraryBase.php
@@ -195,6 +195,9 @@ public function tryBuild(bool $force_build = false): int
195
$this->getBuilder()->emitPatchPoint('before-library[ ' . static::NAME . ']-build');
196
$this->build();
197
$this->installLicense();
198
+ if (getenv('CI')) {
199
+ FileSystem::removeDir($this->source_dir);
200
+ }
201
$this->getBuilder()->emitPatchPoint('after-library[ ' . static::NAME . ']-build');
202
return LIB_STATUS_OK;
203
}
0 commit comments