General Enhancements #4

Merged
me merged 64 commits from dev into main 2025-06-16 12:33:16 -07:00
5 changed files with 306 additions and 13 deletions
Showing only changes of commit 2c19c63a09 - Show all commits

View File

@ -597,7 +597,7 @@
alias freeze="kill-system"
alias system-killer="kill-system"
function_update_sdks: |
if [[ "{{ coding }}" == "true" ]]; then
if [[ "$coding" == "true" ]]; then
function update-sdks {
echo -e "******* Update SDKs *******\n*** Android ***"
yes | sdkmanager --update
@ -618,6 +618,11 @@
rc_common: |
# Fixes "command not found" when using aliases within functions.
shopt -s expand_aliases
# Variables for conditionals
typeset -l coding
export coding="{{ coding }}"
{{ export_path_additions }}
{{ alias_cp }}
{{ alias_mv }}