https://github.com/loevgaard/deployer-issue-3485
https://github.com/loevgaard/deployer-issue-3485
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/loevgaard/deployer-issue-3485
- Owner: loevgaard
- Created: 2023-02-13T19:03:51.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-13T19:24:28.000Z (about 3 years ago)
- Last Synced: 2025-02-13T11:52:37.810Z (about 1 year ago)
- Language: PHP
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# deployer-issue-3485
This is a reproducer of this issue: [github.com/deployphp/deployer/issues/3485](https://github.com/deployphp/deployer/issues/3485)
To reproduce, do the following (you can also visit the action [here](https://github.com/loevgaard/deployer-issue-3485/actions/runs/4167048675)):
```shell
composer install
php include_path.php
vendor/bin/dep deploy
```
The first command will output something like:
```text
Paths in include path
---
- .
- /usr/share/php
- /home/runner/work/deployer-issue-3485/deployer-issue-3485/vendor/setono/deployer-dotenv/src
```
The next will output something like:
```text
Paths in include path
---
- phar
- ///home/runner/work/deployer-issue-3485/deployer-issue-3485/vendor/deployer/deployer/dep/bin/..
- .
- /usr/share/php
Command "deploy" is not defined.
```
The first has the `vendor/setono/deployer-dotenv/src` in its `include_path`, but the second doesn't. This is the issue.