From d7992caeeb7daa9c891a26803e22fa4a5a193b42 Mon Sep 17 00:00:00 2001 From: tianyapiaozi Date: Mon, 30 Dec 2013 16:41:24 +0800 Subject: [PATCH] Fix installing problem --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 31ad883..07dcd7f 100755 --- a/install.sh +++ b/install.sh @@ -211,7 +211,8 @@ mkdir -p ${destdir}${prefix}bin/ || exit 1 mkdir -p ${destdir}${prefix}share/man/man1/ || exit 1 cp -v ./bin/icon.png ${destdir}${prefix}share/autojump/ || exit 1 cp -v ./bin/autojump ${destdir}${prefix}bin/ || exit 1 -cp -v ./bin/autojump_argparse.py ${destdir}${prefix}bin/ || exit 1 +cp -v ./bin/data.py ${destdir}${prefix}bin/ || exit 1 +cp -v ./bin/utils.py ${destdir}${prefix}bin/ || exit 1 cp -v ./docs/autojump.1 ${destdir}${prefix}share/man/man1/ || exit 1 mkdir -p ${destdir}etc/profile.d/ || exit 1 cp -v ./bin/autojump.sh ${destdir}etc/profile.d/ || exit 1