mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-25 08:47:34 +00:00
fix make-dist
This commit is contained in:
parent
ef80aa5690
commit
aac3ddf45f
@ -273,6 +273,6 @@ It features background tasks and interactive chats, and can serve as an interfac
|
|||||||
<p>@Gnadelwartz</p>
|
<p>@Gnadelwartz</p>
|
||||||
<h2>That's it all guys!</h2>
|
<h2>That's it all guys!</h2>
|
||||||
<p>If you feel that there's something missing or if you found a bug, feel free to submit a pull request!</p>
|
<p>If you feel that there's something missing or if you found a bug, feel free to submit a pull request!</p>
|
||||||
<h4>$$VERSION$$ v1.2-pre2-0-g2824487</h4>
|
<h4>$$VERSION$$ v1.2-pre2-2-gef80aa5</h4>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -265,4 +265,4 @@ bashbotBlockRecover() {
|
|||||||
|
|
||||||
If you feel that there's something missing or if you found a bug, feel free to submit a pull request!
|
If you feel that there's something missing or if you found a bug, feel free to submit a pull request!
|
||||||
|
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
|
@ -355,4 +355,4 @@ wait
|
|||||||
If you feel that there's something missing or if you found a bug, feel free to
|
If you feel that there's something missing or if you found a bug, feel free to
|
||||||
submit a pull request!
|
submit a pull request!
|
||||||
|
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
# tested on: ubuntu, opensuse
|
# tested on: ubuntu, opensuse
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
# shellcheck disable=SC2009
|
# shellcheck disable=SC2009
|
||||||
# shellcheck disable=SC2181
|
# shellcheck disable=SC2181
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v1.2-pre2-1-g95b2b9a
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
#
|
#
|
||||||
# Exit Codes:
|
# Exit Codes:
|
||||||
# - 0 success (hopefully)
|
# - 0 success (hopefully)
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
#
|
#
|
||||||
|
|
||||||
# adjust your language setting here, e.g. when run from other user or cron.
|
# adjust your language setting here, e.g. when run from other user or cron.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
|
|
||||||
############
|
############
|
||||||
# NOTE: you MUST run install-hooks.sh again when updating this file!
|
# NOTE: you MUST run install-hooks.sh again when updating this file!
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# file: make-distribution.sh
|
# file: make-distribution.sh
|
||||||
# creates files and arcchives to dirtribute bashbot
|
# creates files and arcchives to dirtribute bashbot
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v1.1-0-gc0eb399
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
|
|
||||||
# magic to ensure that we're always inside the root of our application,
|
# magic to ensure that we're always inside the root of our application,
|
||||||
# no matter from which directory we'll run script
|
# no matter from which directory we'll run script
|
||||||
@ -57,8 +57,8 @@ fi
|
|||||||
|
|
||||||
# make html doc
|
# make html doc
|
||||||
echo "Create html doc"
|
echo "Create html doc"
|
||||||
#shellcheck disable=SC1090
|
# shellcheck disable=SC1090,SC1091
|
||||||
source "$GIT_DIR/../dev/make-html.sh"
|
source "../../dev/make-html.sh"
|
||||||
|
|
||||||
# create archive
|
# create archive
|
||||||
cd .. || exit 1
|
cd .. || exit 1
|
||||||
|
@ -349,5 +349,5 @@ fi
|
|||||||
|
|
||||||
#### [Prev Function Reference](6_reference.md)
|
#### [Prev Function Reference](6_reference.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
# This file is public domain in the USA and all free countries.
|
# This file is public domain in the USA and all free countries.
|
||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
# shellcheck disable=SC1117
|
# shellcheck disable=SC1117
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
|
|
||||||
# adjust your language setting here
|
# adjust your language setting here
|
||||||
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
# https://github.com/topkecleon/telegram-bot-bash#setting-up-your-environment
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
# files: mycommands.sh.dist
|
# files: mycommands.sh.dist
|
||||||
# copy to mycommands.sh and add all your commands and functions here ...
|
# copy to mycommands.sh and add all your commands and functions here ...
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
#
|
#
|
||||||
# shellcheck disable=SC2154,SC2034,SC1117,SC2221,SC2222
|
# shellcheck disable=SC2154,SC2034,SC1117,SC2221,SC2222
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
# shellcheck disable=SC1117
|
# shellcheck disable=SC1117
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
|
|
||||||
# will be automatically sourced from bashbot
|
# will be automatically sourced from bashbot
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
||||||
#
|
#
|
||||||
# shellcheck disable=SC1117
|
# shellcheck disable=SC1117
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
|
|
||||||
# will be automatically sourced from bashbot
|
# will be automatically sourced from bashbot
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
# #### mycommands.clean
|
# #### mycommands.clean
|
||||||
#
|
#
|
||||||
# shellcheck disable=SC1117
|
# shellcheck disable=SC1117
|
||||||
#### $$VERSION$$ v1.2-pre2-0-g2824487
|
#### $$VERSION$$ v1.2-pre2-2-gef80aa5
|
||||||
#
|
#
|
||||||
|
|
||||||
# uncomment the following lines to overwrite info and help messages
|
# uncomment the following lines to overwrite info and help messages
|
||||||
|
Loading…
Reference in New Issue
Block a user