Browse Source

Cleanup

main
parent
commit
71d5e0ab89
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 23
      bin/dotfiles

23
bin/dotfiles

@ -1,23 +0,0 @@
#!/usr/bin/env sh
# Print help text and exit.
if [ "$1" = "help" ] || [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
cat <<HELP
Usage: dotfiles [options]
Examples:
- dotfiles help [-h] Print the help message
- dotfiles fix Fix the local copy
HELP
exit 1
fi
# Fix any corruptions in the local copy.
if [ "$1" = "fix" ]; then
if [ -d .git/objects/ ]; then
find .git/objects/ -type f -empty | xargs rm -f
git fetch -p
git fsck --full
fi
exit 1
fi
Loading…
Cancel
Save