fix CRLF line endings, enforce LF via .gitattributes

This commit is contained in:
Jonas H
2026-02-27 22:51:07 +01:00
parent 8464813df4
commit 074701f983
3 changed files with 16 additions and 65 deletions

View File

@@ -1,15 +1,15 @@
#!/usr/bin/env bash
# install.sh: Stow all packages in this dotfiles repo.
# Run this after cloning on a new machine.
set -euo pipefail
DOTFILES_DIR="$(cd "$(dirname "$0")" && pwd)"
for PACKAGE in "$DOTFILES_DIR"/*/; do
PACKAGE="$(basename "$PACKAGE")"
echo "Stowing: $PACKAGE"
stow --dir="$DOTFILES_DIR" --target="$HOME" --restow "$PACKAGE"
done
echo "Done."
#!/usr/bin/env bash
# install.sh: Stow all packages in this dotfiles repo.
# Run this after cloning on a new machine.
set -euo pipefail
DOTFILES_DIR="$(cd "$(dirname "$0")" && pwd)"
for PACKAGE in "$DOTFILES_DIR"/*/; do
PACKAGE="$(basename "$PACKAGE")"
echo "Stowing: $PACKAGE"
stow --dir="$DOTFILES_DIR" --target="$HOME" --restow "$PACKAGE"
done
echo "Done."