Skip to content

Commit 34de538

Browse files
Mike Perrypde
authored andcommitted
Add a simple utility script to simplify pulling in updates.
1 parent dd81e2e commit 34de538

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

diff-noscript.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
3+
FROM=../noscript-2.0.5.1
4+
TO=../noscript-2.0.9.8rc1
5+
6+
for i in ./src/chrome/content/code/*.js
7+
do
8+
name=`basename $i`
9+
diff -u $FROM/chrome/content/noscript/$name $TO/chrome/content/noscript/$name
10+
done

0 commit comments

Comments
 (0)