summaryrefslogtreecommitdiff
path: root/dots.sh
diff options
context:
space:
mode:
authorElizabeth <lizhunt@amazon.com>2025-05-28 18:19:25 -0700
committerElizabeth <lizhunt@amazon.com>2025-05-28 18:48:35 -0700
commit2a0f7892fd3d00daa62a24359d2bae186092916f (patch)
tree04a8c5c6ba697440b3af812879905587bc97a2ae /dots.sh
parent1c2bd3faf3a1f0cd456a25b19ec404e1f79518c3 (diff)
downloaddotfiles-2a0f7892fd3d00daa62a24359d2bae186092916f.tar.gz
dotfiles-2a0f7892fd3d00daa62a24359d2bae186092916f.zip
Fix that AI shit
Diffstat (limited to 'dots.sh')
-rwxr-xr-xdots.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/dots.sh b/dots.sh
deleted file mode 100755
index 38b4923..0000000
--- a/dots.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-# usage: ./dots.sh [update|clean]?
-
-OP="${1:-'update'}"
-
-STOW_OP="--no-folding"
-if [ "$OP" = "clean" ]; then STOW_OP="-D"; fi
-
-find . -type d -mindepth 1 -maxdepth 1 -not -path '*/.*' \
- | sed "s/^\.\///" \
- | while read dir; do stow "$STOW_OP" "$dir"; done