ASM #15672 - fixed script to allow for full path of input file to be passed

Change-Id: Id4d9b71aaa8fb5ba26f5fc940e43ad149305cbae

Former-commit-id: 355274e7ac [formerly 355274e7ac [formerly 0982ab6536679921a6afdc85166fe57e92aeac63]]
Former-commit-id: 5cf5cac9f7
Former-commit-id: b0e68c1ed1
This commit is contained in:
Kevin.Johnson 2014-10-07 14:55:41 -04:00
parent 44b54df49e
commit 6698928cff

View file

@ -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 )