Skip to content

Commit

Permalink
Fixing regex to match file pattern (was excluding the x86 trailing pa…
Browse files Browse the repository at this point in the history
…ttern)
  • Loading branch information
jonoomph committed Feb 24, 2021
1 parent a3a96d2 commit b4483ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
errors_detected, log, version_info, parse_version_info

PATH = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) # Primary openshot folder
RELEASE_NAME_REGEX = re.compile(r'^OpenShot-v.*?(-.*?-x86[_64]*)')
RELEASE_NAME_REGEX = re.compile(r'^OpenShot-v.*?(-.*?)-x86[_64]*')

# Access info class (for version info)
sys.path.append(os.path.join(PATH, 'src', 'classes'))
Expand Down

0 comments on commit b4483ee

Please sign in to comment.