From 128a33a7e3574f90a66dcfe65cd4ae121098caca Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 11 Mar 2020 17:52:23 +0100 Subject: [PATCH] Remove for now --- clean | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100755 clean diff --git a/clean b/clean deleted file mode 100755 index f935ba4..0000000 --- a/clean +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env python3 - -import os -import os.path -import subprocess - -paths = [p for p in os.listdir(".") if os.path.isdir(p) and "Makefile" in os.listdir(p)] - -for path in paths: - subprocess.run("rm -rf /var/www/manymanymany-varia-websites/{}".format(path), shell=True)