mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
486 B
Bash
23 lines
486 B
Bash
#!/bin/bash
|
|
|
|
if [[ ! -d signaling ]]; then
|
|
cd 3rdparty
|
|
fi
|
|
if [[ ! -d signaling ]]; then
|
|
echo "no 3rdparty"
|
|
exit -1
|
|
fi
|
|
if [[ ! -d ~/git/signaling ]]; then
|
|
echo "no signaling"
|
|
exit -1
|
|
fi
|
|
|
|
echo "Copy signaling"
|
|
cp -R signaling/* ~/git/signaling/ && (cd ~/git/signaling && git st)
|
|
|
|
echo "Copy httpx-static"
|
|
cp -R httpx-static/* ~/git/go-oryx/httpx-static/ && (cd ~/git/go-oryx && git st)
|
|
|
|
echo "Copy srs-bench"
|
|
cp -R srs-bench/* ~/git/srs-bench/ && (cd ~/git/srs-bench && git st)
|