summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorThomas Letan <lthms@soap.coffee>2020-02-22 16:27:39 +0100
committerThomas Letan <lthms@soap.coffee>2020-02-22 16:28:39 +0100
commitf6bec1183c2ecaf58fc4e0ea291b55000692e23c (patch)
tree88b3ae64703a42359e607a3f331a9e9de1da1e69 /scripts
parentUse `tangle-org.el' during bootstrap (diff)
Integrate `update-gitignore.sh' inside cleopatra
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update-gitignore.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/update-gitignore.sh b/scripts/update-gitignore.sh
deleted file mode 100755
index ef03d3b..0000000
--- a/scripts/update-gitignore.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-BEGIN_MARKER="# begin generated files"
-END_MARKER="# begin generated files"
-
-# remove the previous list of generated files to ignore
-sed -i -e "/${BEGIN_MARKER}/,/${END_MARKER}/d" .gitignore
-# remove trailing empty lines
-sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' .gitignore
-
-# output the list of files to ignore
-echo "" >> .gitignore
-echo ${BEGIN_MARKER} >> .gitignore
-for f in $@; do
- echo "${f}" >> .gitignore
-done
-echo ${END_MARKER} >> .gitignore