Summary
chicken-install doesn't update outdated cached eggs
Metadata
- Id: 7e3d5c4fd1eaccf5b992a650579ccf05e8e25f60
- Trac id: 1802
- Type: defect
- Reporter: mario
- Owner:
- Cc:
- Status: closed
- Component: core tools
- Estimated difficulty:
- Resolution: fixed
- Priority: minor
- Milestone: someday
- Version: 5.3.0
- Changetime: 2022-10-28 06:47:02 UTC
- Created: 2022-04-27 18:14:56 UTC
- Keywords: chicken-install
Description
chicken-install doesn't update an egg in case an outdated version of it is cached.
Example to illustrate the problem:
$ chicken-install -purge srfi-13 $ chicken-install srfi-13:0.3.1 $ chicken-status srfi-13 srfi-13 ..................................................... version: 0.3.1 $ chicken-install srfi-13 $ chicken-status srfi-13 srfi-13 ..................................................... version: 0.3.1
The expected output (according to Felix) of the second execution of chicken-status should show 0.3.2, which is the latest version of srfi-13 at the time of writing of this ticket.
Changes and comments
[2022-10-28 06:47:02 UTC] evhan changed status from new to closed
[2022-10-28 06:47:02 UTC] evhan set resolution to fixed
[2022-10-28 06:47:02 UTC] evhan wrote:
Fixed by 08dd951d.