Skip to content

Commit

Permalink
Remove vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
mschering committed Jan 13, 2025
1 parent da40c15 commit c049523
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ forum
/*-license.txt
/www/*-license.txt
.idea
/www/vendor
vendor
/config.php
/www/config.php
/**/*.css
Expand Down
11 changes: 10 additions & 1 deletion build/build.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,16 @@ private function buildFromSource()
$this->buildNodeModules();

putenv("COMPOSER_ALLOW_SUPERUSER=1");
run("composer install --no-dev --optimize-autoloader --ignore-platform-reqs");


$composerFiles = run("find . composer.json -type f");

foreach ($composerFiles as $composerFile) {
cd(dirname($composerFile));
run("composer install --no-dev --optimize-autoloader --ignore-platform-reqs");
}

cd($this->buildDir . "/" . $this->packageName);

$sassFiles = run("find views/Extjs3 go/modules modules \( -name style.scss -o -name style-mobile.scss -o -name htmleditor.scss \) -not -path '*/goui/*'");

Expand Down

0 comments on commit c049523

Please sign in to comment.