We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed3390b commit 4133dfcCopy full SHA for 4133dfc
.pre-commit-scripts/install_gettext.py
@@ -21,9 +21,9 @@ def main():
21
)
22
exit(0)
23
elif sys.platform in ["linux", "linux2"]:
24
- cmd = shlex.split("sudo apt update && sudo apt install -y gettext", posix=True)
+ cmd = "sudo apt update && sudo apt install -y gettext"
25
else: # macOS
26
- cmd = shlex.split("brew update && brew install gettext", posix=True)
+ cmd = "brew update && brew install gettext"
27
return subprocess.run(cmd, shell=True, check=True)
28
29
0 commit comments