1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-01 02:52:32 +00:00

9 lines
118 B
Bash

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