Skip to content

Commit

Permalink
Update to v1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jfadev committed Oct 22, 2024
1 parent cc03c47 commit f1e2b6c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,6 @@ captcha.png
activity.log
node_modules
package-lock.json
yarn.json
yarn.json
tasks.csv
proxies.txt
2 changes: 1 addition & 1 deletion alpine-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

echo "Bot Tok Alpine Install"

echo Install BotTok Dependenties:
echo "Install BotTok Dependenties:"

# install OpenSSH
apk add openssh
Expand Down
2 changes: 1 addition & 1 deletion alpine-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ echo "Bot Tok Alpine Update"
echo "Latest version:"
git describe --tags --abbrev=0

echo Check BotTok Dependenties:
echo "Check BotTok Dependenties:"
programs="nodejs yarn git openssh"
for program in $programs; do
echo $program
Expand Down
2 changes: 1 addition & 1 deletion bottok.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bottok",
"version": "1.1.4",
"version": "1.1.5",
"description": "Bot Tok is an TikTok Up Bot (likes, shares, favorites and views) based in node.js, puppeteer and zefoy.com.",
"type": "module",
"main": "bottok.js",
Expand Down
2 changes: 1 addition & 1 deletion ubuntu-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

echo "Bot Tok Ubuntu Install"

echo Install BotTok Dependenties:
echo "Install BotTok Dependenties:"
sudo apt update
declare -a programs=("nodejs" "npm" "git" "openssh-client")
for program in "${programs[@]}"; do
Expand Down
4 changes: 2 additions & 2 deletions ubuntu-update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ echo "Bot Tok Ubuntu Update"
echo "Latest version:"
git describe --tags --abbrev=0

echo Check BotTok Dependenties:
echo "Check BotTok Dependenties:"
declare -a programs=("nodejs" "npm" "git" "openssh-client")
for program in "${programs[@]}"; do
echo $program
Expand All @@ -16,5 +16,5 @@ echo "Updating BotTok..."
git pull
npm install

echo Starting BotTok...
echo "Starting BotTok..."
node bottok.js

0 comments on commit f1e2b6c

Please sign in to comment.