Compare commits
No commits in common. "edea970001a8731d73085db456b858d6a548e4bf" and "739edf5ae32d2e7d1e733e1047bbf527446b4504" have entirely different histories.
edea970001
...
739edf5ae3
|
@ -20,7 +20,15 @@ function is_readable_file {
|
||||||
|
|
||||||
if is_readable_file "$pkgbuild_path" &&
|
if is_readable_file "$pkgbuild_path" &&
|
||||||
! is_readable_file "$pkgbuild_copy_path";then
|
! is_readable_file "$pkgbuild_copy_path";then
|
||||||
|
source "$pkgbuild_path"
|
||||||
|
if [[ -n "${pkgname:-''}" ]];then
|
||||||
|
global_conf_path="${GLOBAL_CONF_DIR_PATH}/${pkgname}"
|
||||||
|
user_conf_path="${USER_CONF_DIR_PATH}/${pkgname}"
|
||||||
|
if is_readable_file "$global_conf_path" ||
|
||||||
|
is_readable_file "$user_conf_path";then
|
||||||
customizepkg --modify
|
customizepkg --modify
|
||||||
|
fi
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
exec /usr/bin/makepkg ${@}
|
exec /usr/bin/makepkg ${@}
|
||||||
|
|
|
@ -198,7 +198,6 @@ set_git_config_if_unset user.email "icedream@icedream.pw"
|
||||||
set_git_config_if_unset user.name "Carl Kittelberger"
|
set_git_config_if_unset user.name "Carl Kittelberger"
|
||||||
#set_git_config_if_unset user.signingkey B5108C5A158A6608AD3361DA1573F6D8EFE4D0CF
|
#set_git_config_if_unset user.signingkey B5108C5A158A6608AD3361DA1573F6D8EFE4D0CF
|
||||||
set_git_config_if_unset user.signingkey 04ADEF85EA6AEC6F75941E84468BBEEBB9EC6AEA
|
set_git_config_if_unset user.signingkey 04ADEF85EA6AEC6F75941E84468BBEEBB9EC6AEA
|
||||||
set_git_config_if_unset push.autoSetupRemote true
|
|
||||||
|
|
||||||
# set up git-cola
|
# set up git-cola
|
||||||
set_git_config_if_unset cola.spellcheck false
|
set_git_config_if_unset cola.spellcheck false
|
||||||
|
|
Loading…
Reference in New Issue