Skip to content

Commit 78a61c2

Browse files
committed
Bootstrap: Make file that saves the last boot branch to be hidden
That file doesn't need to be visible for it to work
1 parent 15b1736 commit 78a61c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spyder_crash.log
2626
.cache
2727
.coverage*
2828
MANIFEST
29-
boot_branch.txt
29+
.boot_branch.txt
3030

3131
# git .orig files
3232
*.orig

bootstrap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
installed_dev_repo = False
8282
if not args.no_install:
8383
prev_branch = None
84-
boot_branch_file = DEVPATH / "boot_branch.txt"
84+
boot_branch_file = DEVPATH / ".boot_branch.txt"
8585
if boot_branch_file.exists():
8686
prev_branch = boot_branch_file.read_text()
8787

0 commit comments

Comments
 (0)