Skip to content

Commit ab765c8

Browse files
committed
[script] Don't copy german msi package.
1 parent a26229b commit ab765c8

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

scripts/build/build-msi.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -962,19 +962,19 @@ def move_msi():
962962
else:
963963
dst_msi_en = os.path.join(conf[CONF_OUTPUTDIR], '%s-%s-en-shibboleth.msi' % (brand, conf[CONF_VERSION]))
964964
must_copy(src_msi_en, dst_msi_en)
965-
src_msi_de = os.path.join(pack_dir, 'seafile-de.msi')
966-
if not conf[CONF_WITH_SHIB]:
967-
dst_msi_de = os.path.join(conf[CONF_OUTPUTDIR], '%s-%s-de.msi' % (brand, conf[CONF_VERSION]))
968-
else:
969-
dst_msi_de = os.path.join(conf[CONF_OUTPUTDIR], '%s-%s-de-shibboleth.msi' % (brand, conf[CONF_VERSION]))
970-
must_copy(src_msi_de, dst_msi_de)
965+
# src_msi_de = os.path.join(pack_dir, 'seafile-de.msi')
966+
# if not conf[CONF_WITH_SHIB]:
967+
# dst_msi_de = os.path.join(conf[CONF_OUTPUTDIR], '%s-%s-de.msi' % (brand, conf[CONF_VERSION]))
968+
# else:
969+
# dst_msi_de = os.path.join(conf[CONF_OUTPUTDIR], '%s-%s-de-shibboleth.msi' % (brand, conf[CONF_VERSION]))
970+
# must_copy(src_msi_de, dst_msi_de)
971971

972972
print '---------------------------------------------'
973973
print 'The build is successfully. Output is:'
974974
print '>>\t%s' % dst_msi
975975
if not conf[CONF_ONLY_CHINESE]:
976976
print '>>\t%s' % dst_msi_en
977-
print '>>\t%s' % dst_msi_de
977+
# print '>>\t%s' % dst_msi_de
978978
print '---------------------------------------------'
979979

980980
def check_tools():

0 commit comments

Comments
 (0)