Skip to content

Commit

Permalink
Fix version format
Browse files Browse the repository at this point in the history
  • Loading branch information
BGMP committed Oct 1, 2023
1 parent 9224bdf commit 08e4722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ module RVAData
DAY = 16
REVISION = 3
SUFFIX = 'a'
VERSION = "#{YEAR}.#{MONTH < 10 ? "0#{MONTH}" : MONTH}#{DAY}#{SUFFIX}-#{REVISION}"
VERSION = "#{YEAR}.#{MONTH < 10 ? "0#{MONTH}" : MONTH}#{DAY < 10 ? "0#{DAY}" : DAY}#{SUFFIX}-#{REVISION}"
end

0 comments on commit 08e4722

Please sign in to comment.