forked from BochilGaming/games-wabot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
65 lines (57 loc) · 1.92 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
pkg update && pkg upgrade
apt update && apt upgrade
bin=$PREFIX/bin
dir=$(pwd)
if [ -e $bin/node ]; then
echo -e "\u001b[32mSkip install nodejs but already installed!"
else
echo -e "\u001b[31mInstaling \u001b[31mnodejs!"
pkg install nodejs -y
echo -e "\u001b[32mDone install nodejs!"
fi
if [ -e $bin/ffmpeg ]; then
echo -e "\u001b[32mSkip install ffmpeg but already installed!"
else
echo -e "\u001b[31mInstaling \u001b[31mffmpeg!"
pkg install ffmpeg -y
echo -e "\u001b[32mDone install ffmpeg!"
fi
if [ -e $bin/magick ]; then
echo -e "\u001b[32mSkip install imagemagick but already installed!"
else
echo -e "\u001b[31mInstaling \u001b[31mimagemagick!"
pkg install imagemagick -y
echo -e "\u001b[32mDone install imagemagick!"
fi
echo -e "\u001b[33mChecking instalation!"
check() {
if [ -e $bin/node ]; then
echo -e "\u001b[32mNodejs already installed!"
else
echo -e "\u001b[31mNodejs not installed!!, install manualy using `pkg install nodejs -y` or `apt install nodejs -y`"
exit 1
fi
if [ -e $bin/ffmpeg ]; then
echo -e "\u001b[32mFfmpeg already installed!"
else
echo -e "\u001b[31mFfmpeg not installed!!, install manualy using `pkg install ffmpeg -y` or `apt install ffmpeg -y`"
fi
if [ -e $bin/magick ]; then
echo -e "\u001b[32mImagemagick already installed!"
else
echo -e "\u001b[31mImagemagick not installed!!, install manualy using `pkg install imagemagick -y` or `apt install imagemagick -y`"
fi
}
check
echo -e "\u001b[32mDone checking instalation!"
echo -e "\u001b[33mInstall and update module!"
if [ -e $dir/package.json ]; then
npm install
npm update
echo -e "\u001b[32Done Install and update module!"
else
echo -e "\u001b[31mPackage.json not found!"
fi
echo -e "\u001b[32mStarting bot..."
echo -e "\u001b[32mIf found bug pls report in \u001b[33;1mhttps://github.com/Nurutomo/wabot-aq/issues/new?assignees=&labels=&template=bug_report.md&title="
npm run start