mirror of
https://github.com/notwa/rc
synced 2025-02-05 07:43:22 -08:00
actually rm dirs in install
This commit is contained in:
parent
879226342e
commit
7793c1dbf0
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ grep .bashrc .bash_profile >/dev/null 2>&1 \
|
||||||
|
|
||||||
for d in Desktop Documents Downloads Music Pictures Public Templates Video; do
|
for d in Desktop Documents Downloads Music Pictures Public Templates Video; do
|
||||||
[ -d "$d" ] || continue
|
[ -d "$d" ] || continue
|
||||||
is_empty "$d" && echo rm -r "$d" || note "skipping unempty $d"
|
is_empty "$d" && rm -r "$d" || note "skipping unempty $d"
|
||||||
done
|
done
|
||||||
|
|
||||||
mkdir -p opt/local/bin src work play
|
mkdir -p opt/local/bin src work play
|
||||||
|
|
Loading…
Add table
Reference in a new issue