Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Fabien Wernli
search-guard-docs
Commits
c43f200a
Commit
c43f200a
authored
Jan 23, 2020
by
Jochen Kressin
Browse files
fixed deploy script
parent
4ead7082
Changes
1
Hide whitespace changes
Inline
Side-by-side
deploy.sh
View file @
c43f200a
#!/bin/bash
# sanity checks
echo
"Merge marker sanity check"
(
grep
-ri
"<<<<<<"
*
||
grep
-ri
">>>>>>"
*
)
&&
(
echo
"found some merge conflicts, will abort"
;
exit
-1
)
rm
-rf
./_site
bundle
install
...
...
@@ -19,5 +15,5 @@ if [[ $GIT_COMMIT_DESC == *"noindex"* ]]; then
echo
"Skipping Search Index"
else
echo
"Rebuilding Search Index"
jekyll algolia push
--config
_config.yml,_versions.yml
fi
\ No newline at end of file
bundle
exec
jekyll algolia push
--config
_config.yml,_versions.yml
fi
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment