Skip to content

Commit 29d343a

Browse files
committed
Make download-latest-db use https by default.
Signed-off-by: Tim 'mithro' Ansell <[email protected]>
1 parent 1d30d08 commit 29d343a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ Pull submodules:
1313

1414
Get a head start by downloading current database:
1515

16-
# Give argument `https` if you want to use to use the https protocol
17-
# instead.
16+
# Give the argument;
17+
# - 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
1820
./download-latest-db.sh
1921

2022
Install CMake and build the C++ tools:

download-latest-db.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
GITHUB_PROTO=${1:-git+ssh}
3+
GITHUB_PROTO=${1:-https}
44
GITHUB_URL=$GITHUB_PROTO://github.com/SymbiFlow/prjxray-db.git
55
rm -rf database
66
git clone $GITHUB_URL database

0 commit comments

Comments
 (0)