Fix: use full path php /usr/local/bin/composer (not in PATH on Nix)

This commit is contained in:
babelbes0487 2026-06-19 16:56:56 +07:00
parent 63adc61b4c
commit 362e9e804a
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ nixPkgs = [
[phases.install]
cmds = [
"curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer && composer install --no-dev --optimize-autoloader --no-interaction",
"curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer && php /usr/local/bin/composer install --no-dev --optimize-autoloader --no-interaction",
"npm ci"
]