File tree Expand file tree Collapse file tree 3 files changed +22
-3
lines changed
Expand file tree Collapse file tree 3 files changed +22
-3
lines changed Original file line number Diff line number Diff line change 2828 - ` git tag vX.X.X && git push --tags `
2929
3030##### 5. Re-generate the documentation (HTML)
31-
31+
32+ - To build documentation, you need to be able to access Docker from the console. Check with the command:
33+ ``` Bash
34+ docker -v
35+ ```
36+
3237- Update ` version ` in [ build.gradle.kts] ( ../build.gradle.kts ) for the ` dokka ` subproject
3338 ` "dokka" -> <version> `
3439
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ # Check if Docker is available
4+ if ! command -v docker & > /dev/null
5+ then
6+ printf " ERROR: docker could not be found.\n"
7+ exit 1
8+ fi
9+
310docker_image=" registry.jetbrains.team/p/writerside/builder/writerside-builder:241.16003"
411instance_id=" lpk"
512
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ # Check if Docker is available
4+ if ! command -v docker & > /dev/null
5+ then
6+ printf " ERROR: docker could not be found.\n"
7+ exit 1
8+ fi
9+
310algolia_app_name=" 7961PKYRXV"
411algolia_index_name=" lets-plot-kotlin"
512config_json_product=" kotlin"
@@ -22,7 +29,7 @@ while read line; do
2229 fi
2330done < $root_path /Writerside/v.list
2431if [ " $config_json_version " = " " ]; then
25- printf " Error : Cannot read library version.\n"
32+ printf " ERROR : Cannot read library version.\n"
2633 exit 1
2734fi
2835
@@ -37,7 +44,7 @@ while read line; do
3744 fi
3845done < $root_path /local.properties
3946if [ " $aligola_key " = " " ]; then
40- printf " Error : The Aligola key cannot be empty.\n"
47+ printf " ERROR : The Aligola key cannot be empty.\n"
4148 exit 1
4249fi
4350
You can’t perform that action at this time.
0 commit comments