From 8bcf1553f299037cf0a7c0a52e7a1be9fc61397f Mon Sep 17 00:00:00 2001 From: Przemek Grondek Date: Wed, 14 Dec 2022 00:47:57 +0100 Subject: [PATCH] Fix install bin files --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e962585..06bd7b3 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,6 @@ FILES = .bash_aliases .bashrc .inputrc .profile .vimrc .xsessionrc install: cp -v $(FILES) $(HOME) - cp -rv bin $(HOME)/bin + cp -rv bin/* $(HOME)/bin cp -rv .local $(HOME) - cp -rv .config $(HOME) \ No newline at end of file + cp -rv .config $(HOME)