From d77a802e8051e0b8b1c41814fcbaf1d34da47ac8 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 24 Jul 2016 14:35:46 +0100 Subject: [PATCH] No tidying backups --- Makefile | 2 -- tidyup | 2 -- 2 files changed, 4 deletions(-) diff --git a/Makefile b/Makefile index 2aa96dc3..4ef5140a 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,6 @@ alltranslations: bash -c "./translate translations" tidyup: ./tidyup src/* - rm -f src/*~ source: tar -cvf ../${APP}_${VERSION}.orig.tar ../${APP}-${VERSION} --exclude-vcs gzip -f9n ../${APP}_${VERSION}.orig.tar @@ -63,7 +62,6 @@ uninstall: bash -c "./translate uninstall" clean: ./tidyup src/* - rm -f src/*~ rm -f \#* \.#* debian/*.substvars debian/*.log rm -fr deb.* debian/${APP} rm -f ../${APP}*.deb ../${APP}*.changes ../${APP}*.asc ../${APP}*.dsc diff --git a/tidyup b/tidyup index fc896496..17d8d475 100755 --- a/tidyup +++ b/tidyup @@ -139,8 +139,6 @@ class BeautifyBash: data = self.read_file(path) result,error = self.beautify_string(data,path) if(data != result): - # make a backup copy - self.write_file(path + '~',data) self.write_file(path,result) return error