1 parent 0290ea5 commit f219252Copy full SHA for f219252
2 files changed
cefpython/cef1/windows/installer/innosetup.template
@@ -28,7 +28,7 @@ UsePreviousGroup = yes
28
29
SourceDir = %(BINARIES_DIR)s
30
OutputDir = %(INSTALLER_DIR)s\Output
31
-OutputBaseFilename = %(PACKAGE_NAME)s_%(APP_VERSION)s_py%(PYTHON_VERSION_NODOT)s_win32_installer
+OutputBaseFilename = %(PACKAGE_NAME)s-%(APP_VERSION)s-win32-py%(PYTHON_VERSION_NODOT)s
32
33
UninstallFilesDir = {app}\%(PACKAGE_NAME)s
34
LicenseFile = %(BINARIES_DIR)s\LICENSE.txt
cefpython/cef1/windows/installer/make_installer.py
@@ -16,7 +16,7 @@ def main():
16
parser.add_argument("-v", "--version", help="cefpython version",
17
required=True)
18
args = parser.parse_args()
19
- assert re.search(r"^(v\d+)|(\d+\.\d+)$", args.version), (
+ assert re.search(r"^(\d+\.\d+)$", args.version), (
20
"Invalid version string")
21
22
vars = {}
0 commit comments