mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2025-04-11 08:31:51 +00:00
better handling of moved files
This commit is contained in:
parent
d08d581312
commit
81c8b041ec
@ -3,7 +3,7 @@
|
|||||||
#
|
#
|
||||||
# works together with git pre-push.sh and ADD all changed files since last push
|
# works together with git pre-push.sh and ADD all changed files since last push
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev3-4-g8f4b168
|
#### $$VERSION$$ v0.70-dev3-9-gd08d581
|
||||||
|
|
||||||
# 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
|
||||||
@ -21,7 +21,8 @@ echo -n "Add files to repo: "
|
|||||||
for file in ${FILES}
|
for file in ${FILES}
|
||||||
do
|
do
|
||||||
[ -d "${file}" ] && continue
|
[ -d "${file}" ] && continue
|
||||||
git add "${file}" && echo -n "${file} "
|
echo -n "${file} "
|
||||||
done
|
done
|
||||||
|
git add .
|
||||||
echo "done."
|
echo "done."
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ Location of the files ```commands.sh```, ```mycommands.sh```, ```token```, ```bo
|
|||||||
e.g. /etc/bashbot
|
e.g. /etc/bashbot
|
||||||
|
|
||||||
#### BASHBOT_VAR
|
#### BASHBOT_VAR
|
||||||
Location of runtime data files 'data-bot-bash', 'count', downloaded files ...
|
Location of runtime data ```data-bot-bash```, ```count```
|
||||||
```bash
|
```bash
|
||||||
unset BASHBOT_VAR # keep in telegram-bot-bash (default)
|
unset BASHBOT_VAR # keep in telegram-bot-bash (default)
|
||||||
export BASHBOT_VAR "" # keep in telegram-bot-bash
|
export BASHBOT_VAR "" # keep in telegram-bot-bash
|
||||||
@ -117,5 +117,5 @@ for every poll until the maximum of BASHBOT_SLEEP ms.
|
|||||||
|
|
||||||
#### [Prev Notes for Developers](7_develop.md)
|
#### [Prev Notes for Developers](7_develop.md)
|
||||||
|
|
||||||
#### $$VERSION$$ v0.70-dev3-7-gd88d422
|
#### $$VERSION$$ v0.70-dev3-9-gd08d581
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user