We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70725ac commit fae3fd2Copy full SHA for fae3fd2
1 file changed
build.sh
@@ -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