Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com> Co-authored-by: Aditya <xditya@ultroid.tech> Co-authored-by: Kaif <88398455+kaif-00z@users.noreply.github.com> Co-authored-by: Aditya <me@xditya.me> Co-authored-by: 1Danish-00 <danish@ultroid.tech> Co-authored-by: smartman_ru <bblkovo@gmail.com>
17 lines
471 B
Bash
17 lines
471 B
Bash
#!/usr/bin/env bash
|
|
# Ultroid - UserBot
|
|
# Copyright (C) 2021-2022 TeamUltroid
|
|
#
|
|
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
|
|
# PLease read the GNU Affero General Public License in <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
|
|
|
|
if [ -d "resources" ]
|
|
then
|
|
echo "Current directory Identified.."
|
|
else
|
|
apt install git -y
|
|
git clone https://github.com/TeamUltroid/Ultroid
|
|
cd Ultroid
|
|
fi
|
|
bash resources/startup/termux.sh
|