Typo jason -> json 35/62835/1
authorThanh Ha <zxiiro@gmail.com>
Thu, 16 Jan 2020 17:44:51 +0000 (12:44 -0500)
committerThanh Ha <zxiiro@gmail.com>
Thu, 16 Jan 2020 17:45:04 +0000 (12:45 -0500)
Signed-off-by: Thanh Ha <zxiiro@gmail.com>
Change-Id: I7f48f94726e2c4efd8021dc6b0aede2f5f67da51

shell/job-cost.sh

index 6493a6e..5bd61be 100644 (file)
@@ -47,10 +47,10 @@ instance_type=$(curl -s http://169.254.169.254/latest/meta-data/instance-type)
 
 echo "INFO: Retrieving Pricing Info for: $instance_type"
 url="https://pricing.vexxhost.net/v1/pricing/$instance_type/cost?seconds=$uptime"
-jason_block=$(curl -s "$url")
+json_block=$(curl -s "$url")
 
-cost=$(jq .cost <<< "$jason_block")
-resource=$(jq .resource <<< "$jason_block" | tr -d '"')
+cost=$(jq .cost <<< "$json_block")
+resource=$(jq .resource <<< "$json_block" | tr -d '"')
 
 # Archive the cost date
 mkdir -p "$WORKSPACE/archives/cost"