diff options
author | clyhtsuriva <aimeric@adjutor.xyz> | 2025-01-22 20:16:01 +0100 |
---|---|---|
committer | clyhtsuriva <aimeric@adjutor.xyz> | 2025-01-22 20:16:01 +0100 |
commit | f6477766b75e401d211944519ea11d4ad4fc9f61 (patch) | |
tree | 74f6cabb9914bb7c9d922f7c82e9a86291f905c1 /bin/update-scripts-repo.sh | |
parent | aaf413cc544a9b8ae11923f8718ae487a86ffe16 (diff) |
Simplify scripts and improve clarity
- Removed redundant variables in `update-git-repo.sh`.
- Simplified `update-scripts-repo.sh` by removing unnecessary `git diff` output.
Diffstat (limited to 'bin/update-scripts-repo.sh')
-rwxr-xr-x | bin/update-scripts-repo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/update-scripts-repo.sh b/bin/update-scripts-repo.sh index 03a20ee..be782ab 100755 --- a/bin/update-scripts-repo.sh +++ b/bin/update-scripts-repo.sh @@ -9,7 +9,7 @@ cp -rv "$HOME/.local/usr/local/bin" . cp -rv "$HOME/workbench/auto-void-packages" . cp -rv "$HOME/workbench/ansible" . -git status | less && git diff | less -git add . && git commit && git push -v --progress +git status | less +git add . && git commit -v && git push -v --progress popd || exit 1 |