Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
roktas committed Oct 28, 2023
1 parent df6ebba commit 0d4cb7e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
set -euo pipefail; [[ -z ${TRACE:-} ]] || set -x; cd "$(dirname "$0")"

install -d "$HOME"/.local/bin && {
find "$PWD" -executable -type f | xargs ln -t "$HOME"/.local/bin -sf
find "$PWD" -executable -type f -print0 | xargs -0 ln -t "$HOME"/.local/bin -sf
}
2 changes: 1 addition & 1 deletion git/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ rm -rf "$config" && install -d "$config" && {
}

install -d "$HOME"/.local/bin && {
find "$PWD"/bin -executable -type f | xargs ln -t "$HOME"/.local/bin -sf
find "$PWD"/bin -executable -type f -print0 | xargs -0 ln -t "$HOME"/.local/bin -sf
}
2 changes: 1 addition & 1 deletion gnome/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -euo pipefail; [[ -z ${TRACE:-} ]] || set -x; cd "$(dirname "$0")"

install -d "$HOME"/.local/bin && {
find "$PWD"/bin -executable -type f | xargs ln -t "$HOME"/.local/bin -sf
find "$PWD"/bin -executable -type f -print0 | xargs -0 ln -t "$HOME"/.local/bin -sf
}

if [[ -n ${DESKTOP_SESSION:-} ]]; then
Expand Down
2 changes: 1 addition & 1 deletion vagrant/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ install -d "$HOME"/.local/bin && {
}

install -d "$HOME"/.local/bin && {
find "$PWD"/bin -executable -type f | xargs ln -t "$HOME"/.local/bin -sf
find "$PWD"/bin -executable -type f -print0 | xargs -0 ln -t "$HOME"/.local/bin -sf
}

0 comments on commit 0d4cb7e

Please sign in to comment.