Fix cache support for cubrid and pdo_cubrid

This commit is contained in:
Shivam Mathur 2021-02-19 07:18:39 +05:30
parent 1686147b24
commit 36ec0200a6
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A

View File

@ -24,7 +24,9 @@ set_cubrid_branch() {
} }
add_cubrid_helper() { add_cubrid_helper() {
if ! [ -e "${ext_dir:?}/$ext.so" ]; then ext=$1
enable_extension "$ext" extension
if ! check_extension "$ext"; then
status='Installed and enabled' status='Installed and enabled'
set_cubrid_repo set_cubrid_repo
set_cubrid_branch set_cubrid_branch
@ -44,7 +46,7 @@ add_cubrid_helper() {
add_cubrid() { add_cubrid() {
ext=$1 ext=$1
status='Enabled' status='Enabled'
add_cubrid_helper >/dev/null 2>&1 add_cubrid_helper "$ext" >/dev/null 2>&1
add_extension_log "$ext" "$status" add_extension_log "$ext" "$status"
check_extension "$ext" && add_license_log check_extension "$ext" && add_license_log
} }