Add branch to env-shared download. Remove the bin script copy and add it to PATH instead.

This commit is contained in:
2026-03-27 18:29:39 -07:00
parent 9327ed23ac
commit 89982bae39

View File

@@ -127,7 +127,7 @@
alias_cp: alias cp='cp -v'
alias_mv: alias mv='mv -v'
alias_rm: alias rm='echo "Use mv ~/TRASH/ instead!"'
export_path_additions: export PATH="~/bin:"{{ global_bin }}":$PATH"
export_path_additions: export PATH="~/bin:"{{ global_bin }}":"{{ shared_rc_bin }}":$PATH"
function_wttr: |
function weather() {
# 20210301 - Someone showed me an awesome weather API! Had to implement it!
@@ -1307,6 +1307,7 @@
- name: General | Account Management | Users | env-shared | Download
git:
repo: https://git.hyperling.com/me/env-shared
version: dev
dest: "{{ shared_rc_install_dir }}"
clone: true
force: true
@@ -1326,16 +1327,6 @@
ignore_errors: yes
when: user_root.home != "" and user_user.home != ""
- name: General | Account Management | Users | env-shared | Install | Scripts
copy:
src: "{{ shared_rc_install_dir }}/bin/*"
dest: "{{ global_bin }}/"
owner: root
group: "{{ root_group }}"
mode: 0755
ignore_errors: yes
- name: General | Account Management | Users | env-shared | Permissions
file:
path: "{{ user_user.home }}/{{ item }}"