summaryrefslogtreecommitdiffhomepage
path: root/vars/git.vars
diff options
context:
space:
mode:
Diffstat (limited to 'vars/git.vars')
-rw-r--r--vars/git.vars5
1 files changed, 2 insertions, 3 deletions
diff --git a/vars/git.vars b/vars/git.vars
index d9d9a4be..4e9b4195 100644
--- a/vars/git.vars
+++ b/vars/git.vars
@@ -4,10 +4,9 @@
pkg_git_install_post() {
local __ _new;
- for __ in $(find ${PKG_PREFIX}/share/man -name Git*::* -type f); do
+ for __ in $(find "${PKG_PREFIX}/share/man" -name "Git*::*" -type f); do
_new="$(echo ${__} | sed "s/::/./g")";
- echo mv -f ${__} ${_new};
- mv -f ${__} ${_new};
+ build_fileop mv "${__}" "${_new}";
done;
};