Skip to content

Commit

Permalink
chore: nicer error message for windows users
Browse files Browse the repository at this point in the history
  • Loading branch information
Lewiscowles1986 authored Oct 16, 2024
1 parent 4c34340 commit 4698c98
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sh.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
from collections.abc import Mapping

import errno
import fcntl
try:
import fcntl
except ImportError:
raise RuntimeError("This only works on *nix systems. Try Docker?")
import gc
import getpass
import glob as glob_module
Expand Down

0 comments on commit 4698c98

Please sign in to comment.