1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-02-23 01:50:05 +00:00

9 lines
118 B
Bash
Executable File

#!/bin/bash
## apply patches to the ./export hierarchy
for patch in *.patch
do
patch -d export -p1 < $patch
done