Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'calm/pkg2html.py')
-rwxr-xr-xcalm/pkg2html.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/calm/pkg2html.py b/calm/pkg2html.py
index 54edca4..a74f913 100755
--- a/calm/pkg2html.py
+++ b/calm/pkg2html.py
@@ -55,6 +55,7 @@ from .version import SetupVersion
from . import common_constants
from . import maintainers
from . import package
+from . import utils
#
@@ -273,6 +274,11 @@ def update_package_listings(args, packages):
print('</table>', file=index)
+ # touch the including file for the benefit of 'XBitHack full'
+ package_list = os.path.join(args.htdocs, 'package_list.html')
+ if os.path.exists(package_list):
+ utils.touch(package_list)
+
def write_arch_listing(args, packages, arch):
update_summary = set()