hooks: fix typos

This commit is contained in:
Jeff Epler 2020-08-09 20:43:22 -05:00
parent 9101117cb5
commit 2996affa1c

View file

@ -10,7 +10,8 @@ def step(args):
try:
subprocess.run(['git', 'version'], check=True)
except subprocess.CalledProcessError as e:
print("Coult not execute git - Did not create initial commit"
print("Could not execute git - Did not create initial commit")
raise SystemExit
step(["git", "init"])
step(["git", "add", "."])