Skip to content

Commit 52b1ee7

Browse files
committed
The deployments script now works correctly
1 parent 928d520 commit 52b1ee7

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ _book
2626

2727
# PyCharm
2828
.idea/*
29+
30+
# GitHub Pages deployment folder
31+
_gh-pages

gitbook-build-deploy-site.cmd

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ call gitbook install
66

77
call gitbook build . --log=debug --debug
88

9-
git clone https://github.com/SoftUni/Programming-Basics-Book-Python-BG -b gh-pages gh-pages
9+
git clone https://github.com/SoftUni/Programming-Basics-Book-Python-BG -b gh-pages _gh-pages
1010

11-
xcopy /s /y _book gh-pages
11+
xcopy /s /y _book _gh-pages
1212

13-
cd gh-pages
13+
cd _gh-pages
1414

1515
git add .
1616

0 commit comments

Comments
 (0)