9 lines
202 B
Bash
9 lines
202 B
Bash
|
#!/bin/bash
|
||
|
# this script must be run from openzap root dir and it is assuming
|
||
|
# FreeSWITCH is trunk is located at ../../
|
||
|
fsdir=../..
|
||
|
|
||
|
cp Debug/*.dll $fsdir/Debug/
|
||
|
cp Debug/mod/*.dll $fsdir/Debug/mod/
|
||
|
|