Moved patches to their own directory.

This commit is contained in:
akwizgran
2015-01-30 19:27:14 +00:00
parent c14697972a
commit 540a399b77
7 changed files with 0 additions and 0 deletions

17
patches/spongy.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
dirs=(ant core docs jce mail pg pkix prov)
for file in `find ${dirs[@]} -name bouncycastle`
do
path=`dirname $file`
echo "Moving $file to $path/spongycastle"
mv $file $path/spongycastle
done
for file in `grep -Rl bouncycastle ${dirs[@]}`
do
echo "Replacing string bouncycastle in $file"
sed -i 's/bouncycastle/spongycastle/g' $file
done