Skip to content

Commit bf5ad2c

Browse files
committed
vcsh: Do attempt docopts install on aarch64
As it turns out, docopts _does_ have an ARM build, but it doesn't download it when the architecture is reported as aarch64. I opened a pull request against docopts and I hope it will be merged. In anticipation of the merge and subsequent release, I'm removing the block against aarch64 downloads now. docopt/docopts#82
1 parent 0effe0c commit bf5ad2c

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

bin/vcsh/dotfiles-openjck-setup/dotfiles-openjck-setup

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
import json
99
import os
10-
import platform
1110
import shutil
1211
import subprocess
1312
import sys
@@ -337,12 +336,6 @@ def set_up_pipx_packages() -> Result:
337336
# does the same thing for shell scripts, and it's used by all of my shell scripts except
338337
# the bootstrap script.
339338
def set_up_docopts() -> Result:
340-
architecture = platform.machine()
341-
342-
# As of 2026-01-23, docopts does not support aarch64.
343-
if architecture == "aarch64":
344-
return Result.UNSUPPORTED
345-
346339
if shutil.which("docopts") is not None:
347340
return Result.ALREADY_DONE
348341
else:

0 commit comments

Comments
 (0)