Explorar el Código

Touchup gitignore

Matthew Wildoer hace 4 meses
padre
commit
1e95b5f711
Se han modificado 2 ficheros con 4 adiciones y 1 borrados
  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__":