Browse Source

[linux] fix if statement

Former-commit-id: a40b8e216b
pull/43/head
R4SAS 2 years ago
parent
commit
f344f8767f
  1. 4
      linux/.gitignore
  2. 2
      linux/build/build

4
linux/.gitignore vendored

@ -1,3 +1,3 @@ @@ -1,3 +1,3 @@
/app
/browser
/data
/firefox-portable
/start-i2pd-browser.desktop

2
linux/build/build

@ -16,7 +16,7 @@ version="78.15.0esr" @@ -16,7 +16,7 @@ version="78.15.0esr"
application="firefox"
ftpmirror="https://ftp.mozilla.org/pub/$application/releases/$version"
if [ "$arch" == "amd64" ]; then # OpenBSD (and maybe FreeBSD) returns amd64 as architecture instead x86_64
if [ "$arch" = "amd64" ]; then # OpenBSD (and maybe FreeBSD) returns amd64 as architecture instead x86_64
arch=x86_64
fi

Loading…
Cancel
Save