10 lines
169 B
Bash
10 lines
169 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# 拉取代码
|
||
|
git clone http://${REMOTE_ADDR}/amuliang/music-downloader.git /music-downloader
|
||
|
wait
|
||
|
|
||
|
# 运行服务
|
||
|
/start/server.sh &
|
||
|
/start/html.sh &
|
||
|
wait
|