forked from Mirrors/freeswitch
9 lines
118 B
Bash
9 lines
118 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
## apply patches to the ./export hierarchy
|
||
|
|
||
|
for patch in *.patch
|
||
|
do
|
||
|
patch -d export -p1 < $patch
|
||
|
done
|