[linux] fix if statement

This commit is contained in:
R4SAS 2022-04-21 00:31:10 +00:00
parent 57539ee9f0
commit a40b8e216b
2 changed files with 3 additions and 3 deletions

4
linux/.gitignore vendored
View File

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

View File

@ -16,7 +16,7 @@ version="78.15.0esr"
application="firefox" application="firefox"
ftpmirror="https://ftp.mozilla.org/pub/$application/releases/$version" 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 arch=x86_64
fi fi