Skip to content

Commit b9011e5

Browse files
committed
fix: Fixed relative paths in .gitignore
1 parent b5ed86c commit b9011e5

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

.gitignore

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -44,45 +44,45 @@ $RECYCLE.BIN/
4444
.env
4545
.vagrant
4646
Vagrantfile
47-
user_guide_src/venv/
47+
/user_guide_src/venv/
4848
.python-version
49-
user_guide_src/.python-version
49+
/user_guide_src/.python-version
5050

5151
#-------------------------
5252
# Temporary Files
5353
#-------------------------
54-
writable/cache/*
55-
!writable/cache/index.html
54+
/writable/cache/*
55+
!/writable/cache/index.html
5656

57-
writable/logs/*
58-
!writable/logs/index.html
57+
/writable/logs/*
58+
!/writable/logs/index.html
5959

60-
writable/session/*
61-
!writable/session/index.html
60+
/writable/session/*
61+
!/writable/session/index.html
6262

63-
writable/uploads/*
64-
!writable/uploads/index.html
63+
/writable/uploads/*
64+
!/writable/uploads/index.html
6565

66-
writable/debugbar/*
67-
!writable/debugbar/index.html
66+
/writable/debugbar/*
67+
!/writable/debugbar/index.html
6868

69-
writable/**/*.db
70-
writable/**/*.sqlite
69+
/writable/**/*.db
70+
/writable/**/*.sqlite
7171

7272
php_errors.log
7373

7474
#-------------------------
7575
# User Guide Temp Files
7676
#-------------------------
77-
user_guide_src/build/*
77+
/user_guide_src/build/*
7878

7979
#-------------------------
8080
# Test Files
8181
#-------------------------
82-
tests/coverage*
82+
/tests/coverage*
8383

8484
# Don't save phpunit under version control.
85-
phpunit
85+
/phpunit
8686

8787
#-------------------------
8888
# Composer

0 commit comments

Comments
 (0)