add comment

This commit is contained in:
AJ ONeal 2017-05-08 21:40:05 +00:00
parent 9546c489cb
commit f6ef5bcad8
1 changed files with 5 additions and 4 deletions

View File

@ -1,9 +1,14 @@
#!/bin/bash
# something or other about android and tmux using PREFIX
if [ -z "$PREFIX" ]; then
$PREFIX=""
fi
# Not every platform has or needs sudo, gotta save them O(1)s
sudo_cmd=""
((EUID)) && [[ -z "$ANDROID_ROOT" ]] && sudo_cmd="sudo"
###############################
# #
# http_get #
@ -58,10 +63,6 @@ detect_http_get
# #
###################
# Not every platform has or needs sudo
sudo_cmd=""
((EUID)) && [[ -z "$ANDROID_ROOT" ]] && sudo_cmd="sudo"
my_app_name=goldilocks
my_app_pkg_name=com.daplie.goldilocks.web
my_app_dir=$(mktemp -d)