aboutsummaryrefslogtreecommitdiff
path: root/deploy.sh
diff options
context:
space:
mode:
authorMatt Singleton <matt@xcolour.net>2021-07-07 08:51:48 -0500
committerMatt Singleton <matt@xcolour.net>2021-07-07 08:51:48 -0500
commit588a8049c03f3dc3204f7f7e63dfaf6908f18e2d (patch)
tree7025f6c538fd5c4baeffb4dd855a59c846d08186 /deploy.sh
parent7bfc04a4974ab79a95c72e2af17b20461999045a (diff)
move location of user bin and make sure it exists
Diffstat (limited to 'deploy.sh')
-rwxr-xr-xdeploy.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/deploy.sh b/deploy.sh
index 92c0767..2e624ae 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -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