You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In PackageSelection.php line 195:
[InvalidArgumentException]
Specified repository url ""http://gitlab.my.ru/test/pi_prj.git"" does
not exist.
Exception trace:
Composer\Satis\PackageSelection\PackageSelection->select() at /var/www/satisfy/vendor/composer/satis/src/Console/Command/BuildCommand.php:189
Composer\Satis\Console\Command\BuildCommand->execute() at /var/www/satisfy/vendor/symfony/console/Command/Command.php:251
Symfony\Component\Console\Command\Command->run() at /var/www/satisfy/vendor/symfony/console/Application.php:946
Symfony\Component\Console\Application->doRunCommand() at /var/www/satisfy/vendor/symfony/console/Application.php:248
Symfony\Component\Console\Application->doRun() at /var/www/satisfy/vendor/composer/satis/src/Console/Application.php:56
Composer\Satis\Console\Application->doRun() at /var/www/satisfy/vendor/symfony/console/Application.php:148
Symfony\Component\Console\Application->run() at /var/www/satisfy/bin/satis:26
build [--repository-url [REPOSITORY-URL]] [--repository-strict] [--no-html-output] [--skip-errors] [--stats] [--] [<file>] [<output-dir>] [<packages>]...
command line is:
'/var/www/satisfy/bin/satis' 'build' '/var/www/satisfy/satis.json' 'web' '--skip-errors' '--no-ansi' '--verbose' '--repository-url="http://gitlab.my.ru/test/pi_prj.git"' '--repository-strict'
There's a problem with
--repository-url="%s"
since it result shell execution error:
command line is:
'/var/www/satisfy/bin/satis' 'build' '/var/www/satisfy/satis.json' 'web' '--skip-errors' '--no-ansi' '--verbose' '--repository-url="http://gitlab.my.ru/test/pi_prj.git"' '--repository-strict'
and
'--repository-url="http://gitlab.my.ru/test/pi_prj.git"' is not correctly interpreted by shell(Process composent).
simple fix-remove double quotes:
--repository-url=%s
The text was updated successfully, but these errors were encountered: