refactor(posix): remove cd output redirects - it has no output

This commit is contained in:
AJ ONeal
2022-08-24 05:16:43 +00:00
parent 184487e228
commit 76fc3bfefa
5 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -5,7 +5,7 @@ set -u
__rmrf_local() {
if [ -d "${HOME}/.local/opt" ]; then
(
cd "${HOME}/.local/opt" 2>&1 > /dev/null
cd "${HOME}/.local/opt"
rm -rf \
arc \
archiver \
@@ -98,7 +98,7 @@ __rmrf_local() {
#postgresql \
)
(
cd "${HOME}/.local/bin" 2>&1 > /dev/null
cd "${HOME}/.local/bin"
rm -f \
arc \
archiver \