This repository was archived by the owner on Nov 14, 2019. It is now read-only.
Commit 1408999
committed
bug #120 fix handling of missing patch version (xabbuh)
This PR was merged into the 1.0-dev branch.
Discussion
----------
fix handling of missing patch version
When the user tried to install the Symfony Standard Edition with just
specifying the minor version (like `symfony new blog 2.3`), the
installer failed for two reasons:
* The `use` statement for the `Client` class was missing when it was
used to download the list of available versions from symfony.com.
* The URL from where the archive should be downloaded was build before
the patch version was evaluated. Therefore, the archive of the actual
Symfony version to be installed could not be found (it was tried to
download an archive for `2.3` while the archive actually had to be
referenced for `2.3.26`).
This fixes #119.
Commits
-------
52ad07c fix handling of missing patch version1 file changed
+14
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| 14 | + | |
14 | 15 | | |
15 | 16 | | |
16 | 17 | | |
| |||
53 | 54 | | |
54 | 55 | | |
55 | 56 | | |
56 | | - | |
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
| 65 | + | |
65 | 66 | | |
66 | 67 | | |
67 | 68 | | |
| |||
382 | 383 | | |
383 | 384 | | |
384 | 385 | | |
| 386 | + | |
| 387 | + | |
| 388 | + | |
| 389 | + | |
| 390 | + | |
| 391 | + | |
| 392 | + | |
| 393 | + | |
| 394 | + | |
| 395 | + | |
| 396 | + | |
| 397 | + | |
385 | 398 | | |
0 commit comments