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.
16 lines
547 B
Bash
16 lines
547 B
Bash
#!/bin/sh -e
|
|
|
|
DST_DIR=/src/tt-rss
|
|
|
|
mkdir -p $DST_DIR
|
|
|
|
echo cloning $ORIGIN_REPO_MAIN to $DST_DIR...
|
|
git clone --branch master --depth 1 $ORIGIN_REPO_MAIN $DST_DIR
|
|
echo built for: $(git --git-dir=$DST_DIR/.git --no-pager log --pretty='%H' -n1 HEAD)
|
|
|
|
echo cloning $ORIGIN_REPO_XACCEL to $DST_DIR/plugins.local/nginx_xaccel...
|
|
git clone --branch master --depth 1 $ORIGIN_REPO_XACCEL $DST_DIR/plugins.local/nginx_xaccel
|
|
echo built for: $(git --git-dir=$DST_DIR/plugins.local/nginx_xaccel/.git --no-pager log --pretty='%H' -n1 HEAD)
|
|
|
|
mkdir -p /var/www
|