浏览代码

Touchup gitignore

Matthew Wildoer 4 月之前
父节点
当前提交
1e95b5f711
共有 2 个文件被更改,包括 4 次插入1 次删除
  1. 3 0
      .gitignore
  2. 1 1
      configure.py

+ 3 - 0
.gitignore

@@ -38,3 +38,6 @@ venv/
 
 # .ato directory
 .ato/
+
+# IDEs
+.vscode/

+ 1 - 1
configure.py

@@ -53,7 +53,7 @@ def main(name: str, debug: bool):
 
     # Remove this script
     if not debug:
-        (repo_root / "configure.py").unlink()
+        Path(__file__).unlink()
 
 
 if __name__ == "__main__":