File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed
Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Simply install `github-desktop-plus-bin` from the AUR.
4646Create the repository file:
4747
4848``` bash
49- echo " deb [arch=amd64 trusted=yes] https://deb.github-desktop.polrivero.com/ stable main" | sudo tee /etc/apt/sources.list.d/github-desktop-plus.list
49+ echo " deb [trusted=yes] https://deb.github-desktop.polrivero.com/ stable main" | sudo tee /etc/apt/sources.list.d/github-desktop-plus.list
5050```
5151
5252Update the package list and install:
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ url="https://github.com/pol-rivero/github-desktop-plus"
1313license=(' MIT' )
1414depends=(
1515 ' curl'
16+ ' libcurl-gnutls'
1617 ' git'
1718 ' libsecret'
1819 ' libxss'
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ const options: DebianOptions = {
6161 depends : [
6262 // Desktop-specific dependencies
6363 'libcurl3 | libcurl4' ,
64+ 'libcurl3-gnutls' ,
6465 'libsecret-1-0' ,
6566 'gnome-keyring' ,
6667 ] ,
Original file line number Diff line number Diff line change @@ -9,4 +9,9 @@ chmod +x "$CLI_DIR"/github || :
99# create symbolic links to /usr/bin directory
1010ln -f -s " $CLI_DIR " /github /usr/bin || :
1111
12+ # https://github.com/shiftkey/desktop/issues/21
13+ if [ ! -f /usr/lib64/libcurl-gnutls.so.4 ]; then
14+ ln -s /usr/lib64/libcurl.so.4 /usr/lib64/libcurl-gnutls.so.4
15+ fi
16+
1217exit 0
You can’t perform that action at this time.
0 commit comments