Selaa lähdekoodia

Touchup gitignore

Matthew Wildoer 4 kuukautta sitten
vanhempi
commit
1e95b5f711
2 muutettua tiedostoa jossa 4 lisäystä ja 1 poistoa
  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__":