Try to fix the git repo issue
This commit is contained in:
parent
57eb9fce34
commit
b1861037c0
1 changed files with 4 additions and 3 deletions
|
@ -38,7 +38,8 @@ def hash_file(filename: Path) -> str:
|
||||||
def perform_commit(filepath: Path, title: str=None,
|
def perform_commit(filepath: Path, title: str=None,
|
||||||
draft: bool=False) -> None:
|
draft: bool=False) -> None:
|
||||||
|
|
||||||
repo = Repo("./") # FIXME
|
import os
|
||||||
|
repo = Repo(os.curdir) # FIXME
|
||||||
repo.index.add(str(filepath))
|
repo.index.add(str(filepath))
|
||||||
|
|
||||||
if not draft:
|
if not draft:
|
||||||
|
@ -86,7 +87,7 @@ def create_new_post(title: str, categories: list=None, tags: list=None,
|
||||||
else:
|
else:
|
||||||
final_path = Path("_drafts") / filename
|
final_path = Path("_drafts") / filename
|
||||||
|
|
||||||
with tempfile.NamedTemporaryFile(mode="wt") as temp:
|
with tempfile.NamedTemporaryFile(mode="wt", suffix=".md") as temp:
|
||||||
|
|
||||||
temp_path = Path(temp.name)
|
temp_path = Path(temp.name)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue