Overview
Comment: | setup.sh: Fix typo |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bd831c90241dec5cbad97c5b8816cda0 |
User & Date: | js 2023-04-16 06:33:12 |
Context
2023-04-16
| ||
20:58 | ssh/config: Add tmate.io check-in: 7ec483cea7 user: js tags: trunk | |
06:33 | setup.sh: Fix typo check-in: bd831c9024 user: js tags: trunk | |
2023-04-10
| ||
18:30 | zshrc: Fix ObjFW flags for Nintendo Switch check-in: ab12fcaaf3 user: js tags: trunk | |
Changes
Changes to setup.sh.
︙ | ︙ | |||
55 56 57 58 59 60 61 | have zsh && link_file zshrc .zshrc if have ssh; then mkdir -p $HOME/.ssh link_file ssh/config .ssh/config ../ fi if test x"$(uname -s)" = x"Darwin"; then | | | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | have zsh && link_file zshrc .zshrc if have ssh; then mkdir -p $HOME/.ssh link_file ssh/config .ssh/config ../ fi if test x"$(uname -s)" = x"Darwin"; then for i in "Keyboard Layouts/"*; do dest="$HOME/Library/$i" # This does not like being symlinked… if [ ! -e "$dest" ]; then echo "Hardlinking $i -> $dest" ln "$i" "$dest" else echo "$dest already exists, skipping…" |
︙ | ︙ |