docs icon indicating copy to clipboard operation
docs copied to clipboard

Update quick_start.rst

Open ThomasLandauer opened this issue 8 years ago • 3 comments

The existing command (vendor/bin/behat -V) didn't work for me (Windows). Changed it to something that worked.

ThomasLandauer avatar May 04 '17 15:05 ThomasLandauer

Will you merge this or can I delete it?

ThomasLandauer avatar Aug 17 '18 09:08 ThomasLandauer

Well, on Windows, the path separator is \ rather than /, so accessing the subfolder is vendor\bin\behat.

Adding php in front of vendor/bin/behat won't work on any system not supporting symlinks (hint: windows for instance) as composer would generate a proxy file then (which is not a PHP file). So @bocharsky-bw's request is wrong.

stof avatar Aug 17 '18 10:08 stof

Ah, good to know! I didn't know about Composer proxy files, thanks @stof .

So nothing much we can do here. If you're on Windows, just use \ instead of / and call the same command. If you're on Unix (any system that supports symlinks) - keep in mind that you may need to add php in front of your command if you have permission problems, etc.

bocharsky-bw avatar Aug 20 '18 09:08 bocharsky-bw