Add .tar.xz, .txz, and .orig.tar.xz as known extensions to dl_cleanup.py.
Signed-off-by: Ian Leonard <[email protected]>
Signed-off-by: Gabor Juhos <[email protected]>
SVN-Revision: 35645
# OpenWRT download directory cleanup utility.
# Delete all but the very last version of the program tarballs.
#
+# Copyright (C) 2013 OpenWrt.org
"""
import sys
extensions = (
".tar.gz",
".tar.bz2",
+ ".tar.xz",
".orig.tar.gz",
".orig.tar.bz2",
+ ".orig.tar.xz",
".zip",
".tgz",
".tbz",
+ ".txz",
)
versionRegex = (