Skip to content

Commit

Permalink
Day One Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
libalis committed Apr 22, 2022
1 parent 9e607b1 commit fed1641
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[1.1.0]
Changelog:
- Bug fixes
- Switch to a database
- Return of an initial self-updater
- Improved efficiency and storage requirements
Expand Down
2 changes: 1 addition & 1 deletion upm.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func read() {
scanner.Scan()
if scanner.Text() == "<upm>" {
scanner.Scan()
if scanner.Text() == "\t<version>1.0.0</version>" {
if scanner.Text() == "\t<version>" + version + "</version>" {
scanner.Scan()
if scanner.Text() == "\t<traditional>true</traditional>" {
traditional = "true"
Expand Down

0 comments on commit fed1641

Please sign in to comment.