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 [formerly c90be3ba42] [formerly c3f3140c4f] [formerly b8ef7759e0 [formerly c90be3ba42] [formerly c3f3140c4f] [formerly 01b52daea2 [formerly c3f3140c4f [formerly 986a78cef3d8814e04035b00545a289171c7cc8a]]]]
Former-commit-id: 01b52daea2
Former-commit-id: cf7ca768ce [formerly 8fa1b81841] [formerly 2f00b95c997eee25ced2231beef462f774845262 [formerly e72d2cdc73]]
Former-commit-id: 11adcc4c5f13bb5bc594502622dc5d91565994b4 [formerly 4659b14c23]
Former-commit-id: 89720ee6a6
This commit is contained in:
Sean Webb 2014-10-07 14:04:57 -05:00 committed by Gerrit Code Review
commit c07a095741

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 )