Refactor bash config and env vars, set Zed as git editor
- Move environment variable exports from sessionVariables to bashrc - Add more robust sourcing of .profile and .bashrc.local - Improve SSH_AUTH_SOCK override logic for 1Password - Remove redundant path and pyenv logic from profileExtra - Set git core.editor to "zed" instead of "nvim" - Add DOTFILES_PATH to global session variables
This commit is contained in:
@@ -419,7 +419,9 @@ def main():
|
||||
|
||||
# Execute the Ansible command, passing password via stdin if available
|
||||
if sudo_password:
|
||||
result = subprocess.run(ansible_cmd, input=sudo_password.encode("utf-8"), check=False)
|
||||
result = subprocess.run(
|
||||
ansible_cmd, input=sudo_password.encode("utf-8"), check=False
|
||||
)
|
||||
else:
|
||||
result = subprocess.run(ansible_cmd, check=False)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user