Skip to content

Commit

Permalink
remove 32bit support from nautilus-dropbox
Browse files Browse the repository at this point in the history
  • Loading branch information
mxdbx committed Aug 7, 2024
1 parent fce98dc commit 4d038e9
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions dropbox.in
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,7 @@ def yes_no_question(question):
def plat():
if sys.platform.lower().startswith('linux'):
arch = platform.machine()
if (arch[0] == 'i' and
arch[1].isdigit() and
arch[2:4] == '86'):
plat = "x86"
elif arch == 'x86_64':
if arch == 'x86_64':
plat = arch
else:
FatalVisibleError("Platform not supported")
Expand Down

0 comments on commit 4d038e9

Please sign in to comment.