Skip to content

Commit

Permalink
ZENKO-4730: updating symlinks and sh
Browse files Browse the repository at this point in the history
  • Loading branch information
benzekrimaha committed Mar 7, 2024
1 parent 3d46e79 commit 227a090
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion solution-base/mongodb/scripts/create-app-user.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

if command -v mongo &> /dev/null; then
if which mongo &> /dev/null; then
mongoCmd="mongo"
else
mongoCmd="mongosh"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

if command -v mongo &> /dev/null; then
if which mongo &> /dev/null; then
mongoCmd="mongo"
else
mongoCmd="mongosh"
Expand Down

0 comments on commit 227a090

Please sign in to comment.