Address user config overwriting on upgrade #18
Labels
No Label
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: bit-badger/feed-reader-central#18
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
As currently designed,
user-config.php
is a file that users are free to modify. However, with it in the source repository under that name, upgrades will copy the repository version over a possibly-modified version.To fix this, rename
user-config.php
touser-config.dist.php
, and update the installation instructions to include renaming this file. Future upgrades will continue to overwrite thedist
version (allowing users to diff the two after upgrading, to see if there are any new configuration items), but will leave the user's configuration alone.This is complete