mirror of https://github.com/keeweb/keeweb
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.
30 lines
730 B
Bash
30 lines
730 B
Bash
#!/usr/bin/env bash
|
|
|
|
SCHEMA=${SCHEMA:-http}
|
|
|
|
KEEWEB_GH=git@github.com:keeweb
|
|
|
|
if [[ "$SCHEMA" == 'http' ]]; then
|
|
KEEWEB_GH=https://github.com/keeweb
|
|
fi
|
|
|
|
echo "Cloning KeeWeb ($KEEWEB_GH) into $PWD/keeweb..."
|
|
|
|
mkdir keeweb
|
|
pushd keeweb >/dev/null
|
|
|
|
git clone $KEEWEB_GH/keeweb.git -b develop keeweb
|
|
|
|
git clone $KEEWEB_GH/favicon-proxy.git favicon-proxy
|
|
git clone $KEEWEB_GH/kdbxweb.git kdbxweb
|
|
git clone $KEEWEB_GH/beta.keeweb.info.git keeweb-beta
|
|
git clone $KEEWEB_GH/keeweb-site.git keeweb-site
|
|
git clone $KEEWEB_GH/keeweb-plugins.git keeweb-plugins
|
|
git clone $KEEWEB_GH/keeweb-connect.git keeweb-connect
|
|
popd > /dev/null
|
|
|
|
mkdir keeweb/keys
|
|
echo kdbxweb/ > keeweb/.eslintignore
|
|
|
|
echo "Done! KeeWeb is cloned into $PWD/keeweb"
|