diff options
author | Matt Singleton <matt@xcolour.net> | 2021-07-07 08:51:48 -0500 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2021-07-07 08:51:48 -0500 |
commit | 588a8049c03f3dc3204f7f7e63dfaf6908f18e2d (patch) | |
tree | 7025f6c538fd5c4baeffb4dd855a59c846d08186 | |
parent | 7bfc04a4974ab79a95c72e2af17b20461999045a (diff) |
move location of user bin and make sure it exists
-rwxr-xr-x | deploy.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -11,7 +11,7 @@ xcache="${XDG_CACHE_HOME:-${HOME}/.cache}" xdata="${XDG_DATA_HOME:-${HOME}/.local/share}" xconfig="${XDG_CONFIG_HOME:-${HOME}/.config}" -userbin="$HOME/bin" +userbin="$HOME/.local/bin" # deploy to XDG dirs mkdir -p "${xcache}/zsh" @@ -39,6 +39,7 @@ done cd .. # deploy to user binaries +mkdir -p "$userbin" cd bin for f in * do |