cask/dsl/version: remove another invalid character

This commit is contained in:
Mike McQuaid 2021-03-30 15:49:47 +01:00
parent 1bbed03c09
commit a2099461dc
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70

View File

@ -19,7 +19,7 @@ module Cask
MAJOR_MINOR_PATCH_REGEX = /^([^.,:]+)(?:.([^.,:]+)(?:.([^.,:]+))?)?/.freeze
INVALID_CHARACTERS = /[^0-9a-zA-Z.,:\-_+% ]/.freeze
INVALID_CHARACTERS = /[^0-9a-zA-Z.,:\-_+ ]/.freeze
class << self
private