Commit 95fd7b52 by 据说甜蜜呢

修改方法GetAppName

parent 816c43ce
......@@ -4,7 +4,7 @@ set -e
function GetServices()
{
declare services=$(ls -l src/services | awk 'NR>1')
declare services=$(ls -l ./src/services | awk 'NR>1')
eval $1="${services}"
}
......@@ -17,8 +17,8 @@ function GetServiceName()
function GetAppName()
{
declare appName=($(grep -oP '(?<=AppName>)[^<]+' "devops/app.props"))
eval $1="${appName}"
declare name=($(grep -oP '(?<=AppName>)[^<]+' "./devops/app.props"))
eval $1="${name}"
}
function GetSolutionName()
......
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