aboutsummaryrefslogtreecommitdiff
path: root/addlicensecomments.sh
diff options
context:
space:
mode:
authorNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2011-06-27 06:56:26 -0700
committerNils Dagsson Moskopp <nils@dieweltistgarnichtso.net>2011-06-27 06:56:26 -0700
commitf37a3a84fafb91bcfc109fed95aa6d42726f1bf7 (patch)
treecde1e5f47f191beb4a9cefcd87872aef53b5fcec /addlicensecomments.sh
parente261cc9e8fa67c9020fa0a82bd1a7041ecd351a0 (diff)
parent13cf5425db613dc0a4323c87a4988bb18fb87aca (diff)
downloadhax-minetest-server-f37a3a84fafb91bcfc109fed95aa6d42726f1bf7.tar.gz
hax-minetest-server-f37a3a84fafb91bcfc109fed95aa6d42726f1bf7.zip
Merge pull request #13 from Bahamada/upstream_merge
Upstream merge
Diffstat (limited to 'addlicensecomments.sh')
-rw-r--r--addlicensecomments.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/addlicensecomments.sh b/addlicensecomments.sh
deleted file mode 100644
index e5642e82d..000000000
--- a/addlicensecomments.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-for i in `grep -L 'This program is free software' src/*.{h,cpp}`
-do
- cat licensecomment.txt > tempfile
- cat $i >> tempfile
- cp tempfile $i
-done
-rm tempfile
-