Commit 6b2a84f6 by 据说甜蜜呢

添加方法

parent b1fe7e25
......@@ -2,6 +2,12 @@
set -e
function GetServices()
{
declare services=$(ls -l src/services | awk 'NR>1')
eval $1="${services}"
}
function GetServiceName()
{
declare servicePrefix=${1}
......@@ -15,6 +21,12 @@ function GetAppName()
eval $1="${appName}"
}
function GetImageUserName()
{
declare name=($(grep -oP '(?<=ImageUserName>)[^<]+' "devops/deploy.props"))
eval $1="${name}"
}
function GetCiCdSettings()
{
declare allPublishable=($(grep -oP '(?<=AllPublishable>)[^<]+' "/tmp/cicd.props"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment