diff --git a/abf/console/misc.py b/abf/console/misc.py index 99fd979..fe90b40 100644 --- a/abf/console/misc.py +++ b/abf/console/misc.py @@ -578,7 +578,7 @@ def upload_files(models, min_size, path=None, remove_files=True, upload_all=Fals if src not in yaml_files or sha_hash != yaml_files[src]: log.debug(_('Hash for file %s has been updated') % src) # try to remove previous versions - re_src = re.compile('^([\w\d\-\.]+)-([\d\.]+)\.(tar\.gz|tar.xz|gem|tgz|zip|tar\.bz2|crate)$') + re_src = re.compile('^([\w\d\-\.]+)-([\d\.]+)\.(tar\.gz|tar.xz|gem|run|tgz|zip|tar\.bz2|crate)$') res = re_src.match(src) if res: src_gr = res.groups()