We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d30d08 commit 29d343aCopy full SHA for 29d343a
README.md
@@ -13,8 +13,10 @@ Pull submodules:
13
14
Get a head start by downloading current database:
15
16
- # Give argument `https` if you want to use to use the https protocol
17
- # instead.
+ # Give the argument;
+ # - https if you to use the https protocol (default)
18
+ # - git+ssh if you want to use git+ssh protocol
19
+ # - git if you want to use the git protocol
20
./download-latest-db.sh
21
22
Install CMake and build the C++ tools:
download-latest-db.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
3
-GITHUB_PROTO=${1:-git+ssh}
+GITHUB_PROTO=${1:-https}
4
GITHUB_URL=$GITHUB_PROTO://github.com/SymbiFlow/prjxray-db.git
5
rm -rf database
6
git clone $GITHUB_URL database
0 commit comments