Skip to content

Commit

Permalink
bug fixes in build bash scripts
Browse files Browse the repository at this point in the history
Signed-off-by: SRIKUMAR VENUGOPAL <srikumarv@ie.ibm.com>
  • Loading branch information
srikumar003 committed Jan 21, 2024
1 parent 1f751b1 commit d0826f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ then
fi
else
echo "Docker command found"
cmd_type = $(type -t ${DOCKERCMD})
cmd_type=$(type -t ${DOCKERCMD})
if [ $cmd_type == "alias" ]
then
echo "${DOCKERCMD} is an alias, switching to ${ALTDOCKERCMD}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ then
fi
else
echo "Docker command found"
cmd_type = $(type -t ${DOCKERCMD})
cmd_type=$(type -t ${DOCKERCMD})
if [ $cmd_type == "alias" ]
then
echo "${DOCKERCMD} is an alias, switching to ${ALTDOCKERCMD}"
Expand Down

0 comments on commit d0826f2

Please sign in to comment.