Bootstrap: Make file that saves the last boot branch to be hidden

That file doesn't need to be visible for it to work
Esse commit está contido em:
Carlos Cordoba
2023-02-15 12:34:31 -05:00
commit 78a61c2501
2 arquivos alterados com 2 adições e 2 exclusões
+1 -1
Ver Arquivo
@@ -26,7 +26,7 @@ spyder_crash.log
.cache
.coverage*
MANIFEST
boot_branch.txt
.boot_branch.txt
# git .orig files
*.orig
+1 -1
Ver Arquivo
@@ -81,7 +81,7 @@ assert args.gui in (None, 'pyqt5', 'pyside2'), \
installed_dev_repo = False
if not args.no_install:
prev_branch = None
boot_branch_file = DEVPATH / "boot_branch.txt"
boot_branch_file = DEVPATH / ".boot_branch.txt"
if boot_branch_file.exists():
prev_branch = boot_branch_file.read_text()