Skip to content

Commit

Permalink
Bug fix in build and push script (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeep-krishnamurthy authored Nov 20, 2020
1 parent 7bf22e2 commit 575e095
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

if [ "$#" -eq 4 ]; then
if [ "$#" -eq 3 ]; then
region=$1
image=$2
tag=$3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

if [ "$#" -eq 4 ]; then
if [ "$#" -eq 3 ]; then
region=$1
image=$2
tag=$3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

if [ "$#" -eq 4 ]; then
if [ "$#" -eq 3 ]; then
region=$1
image=$2
tag=$3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

if [ "$#" -eq 4 ]; then
if [ "$#" -eq 3 ]; then
region=$1
image=$2
tag=$3
Expand Down

0 comments on commit 575e095

Please sign in to comment.