Merge "ASM #15672 - fixed script to allow for full path of input file to be passed" into asm_14.3.1
Former-commit-id:b8ef7759e0
[formerlyc90be3ba42
] [formerlyc3f3140c4f
] [formerlyb8ef7759e0
[formerlyc90be3ba42
] [formerlyc3f3140c4f
] [formerly01b52daea2
[formerlyc3f3140c4f
[formerly 986a78cef3d8814e04035b00545a289171c7cc8a]]]] Former-commit-id:01b52daea2
Former-commit-id:cf7ca768ce
[formerly8fa1b81841
] [formerly 2f00b95c997eee25ced2231beef462f774845262 [formerlye72d2cdc73
]] Former-commit-id: 11adcc4c5f13bb5bc594502622dc5d91565994b4 [formerly4659b14c23
] Former-commit-id:89720ee6a6
This commit is contained in:
commit
c07a095741
1 changed files with 5 additions and 2 deletions
|
@ -115,8 +115,11 @@ function setupEnv() {
|
|||
logIt INFO main "User passed an argument which we're using for the input file name : $1"
|
||||
fi
|
||||
|
||||
|
||||
inputFile=${fullScriptPath}/${inputFileName}
|
||||
if echo ${inputFileName} | grep '/' > /dev/null ; then
|
||||
inputFile=${inputFileName}
|
||||
else
|
||||
inputFile=${fullScriptPath}/${inputFileName}
|
||||
fi
|
||||
|
||||
runTimeStamp=$( date +%Y%m%d_%H%M%S )
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue