From 5440d2d22daefbfd874e6a8f7409e63ab3bf591b Mon Sep 17 00:00:00 2001 From: simonzhangsz Date: Fri, 22 Dec 2023 10:05:54 +0800 Subject: [PATCH] fix: ba customized OMC --- misc/importdb.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/importdb.sh b/misc/importdb.sh index 8ec2a937..d90a10b7 100644 --- a/misc/importdb.sh +++ b/misc/importdb.sh @@ -1,6 +1,6 @@ #!/bin/bash -C_ARG="agt" +C_ARG="*" M_ARG="*" check_args() { @@ -126,11 +126,11 @@ esac case "$C_ARG" in ba) - echo "Processing BA customized OMC ..." for SQL in ${CustomizedDirBA}/db/*.sql; do echo "Execute SQL script: ${SQL} ..." mysql -u${USER} -p${PASSWORD} -P ${PORT} --protocol tcp -D ${DBNAME} < ${SQL}; done + echo "Processing BA customized OMC ..." cp -rf ${CustomizedDirBA}/logo/* $StaticLogoDir ;; *)