Skip to content

Commit

Permalink
Merge pull request cs50#160 from cs50/quotes
Browse files Browse the repository at this point in the history
quoted filename
  • Loading branch information
Kareem Zidane authored May 1, 2018
2 parents 4974547 + dc94615 commit fbf71da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@ class CustomInstall(install):
},
data_files=create_mo_files(),
url="https://github.com/cs50/submit50",
version="2.4.7"
version="2.4.8"
)
6 changes: 3 additions & 3 deletions submit50.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,9 +606,9 @@ def unescape(s):
run("git lfs install --local")
run("git config credential.helper cache") # for pre-push hook
for large in larges:
run("git rm --cached {}".format(large))
run("git lfs track {}".format(large))
run("git add {}".format(large))
run("git rm --cached {}".format(shlex.quote(large)))
run("git lfs track {}".format(shlex.quote(large)))
run("git add {}".format(shlex.quote(large)))
run("git add --force .gitattributes")

# files that will be submitted
Expand Down

0 comments on commit fbf71da

Please sign in to comment.