Skip to content

Commit b4483ee

Browse files
committed
Fixing regex to match file pattern (was excluding the x86 trailing pattern)
1 parent a3a96d2 commit b4483ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

installer/deploy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
errors_detected, log, version_info, parse_version_info
4040

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

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

0 commit comments

Comments
 (0)