Skip to content

Commit fae3fd2

Browse files
committed
build: Initial
Signed-off-by: NotZeetaa <rodrigo2005contente@gmail.com>
1 parent 70725ac commit fae3fd2

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

build.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env bash
2+
function push() {
3+
# shellcheck disable=SC2154
4+
curl -F document="@$1" "https://api.telegram.org/bot${token}/sendDocument" \
5+
-F chat_id="${chat_id}" \
6+
-F "disable_web_page_preview=true" \
7+
-F "parse_mode=html"
8+
}
9+
echo ""
10+
rm -rf ./*.zip
11+
zip -r9 "DroidConsole-BETA-2.zip" . -x "*build*" "*.bak*" "*.git*"
12+
push "DroidConsole-BETA-2.zip"

0 commit comments

Comments
 (0)