mirror of https://github.com/openXC7/prjxray.git
Make download-latest-db use https by default.
Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
This commit is contained in:
parent
1d30d08c82
commit
29d343a293
|
|
@ -13,8 +13,10 @@ Pull submodules:
|
||||||
|
|
||||||
Get a head start by downloading current database:
|
Get a head start by downloading current database:
|
||||||
|
|
||||||
# Give argument `https` if you want to use to use the https protocol
|
# Give the argument;
|
||||||
# instead.
|
# - https if you to use the https protocol (default)
|
||||||
|
# - git+ssh if you want to use git+ssh protocol
|
||||||
|
# - git if you want to use the git protocol
|
||||||
./download-latest-db.sh
|
./download-latest-db.sh
|
||||||
|
|
||||||
Install CMake and build the C++ tools:
|
Install CMake and build the C++ tools:
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
GITHUB_PROTO=${1:-git+ssh}
|
GITHUB_PROTO=${1:-https}
|
||||||
GITHUB_URL=$GITHUB_PROTO://github.com/SymbiFlow/prjxray-db.git
|
GITHUB_URL=$GITHUB_PROTO://github.com/SymbiFlow/prjxray-db.git
|
||||||
rm -rf database
|
rm -rf database
|
||||||
git clone $GITHUB_URL database
|
git clone $GITHUB_URL database
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue