Skip to content

Commit 6799614

Browse files
committed
Fix setupKeys relative path
1 parent 7cc2816 commit 6799614

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
.idea/
1+
.idea/
2+
3+
# generated by scripts
4+
.setupMongoKeys

setupMongoShell.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# Setup mongosh - src: https://www.mongodb.com/docs/mongodb-shell/install/
33
if [ ! -f ./.setupMongoKeys ]; then
4-
./setupMongoKeys.sh
4+
$(dirname "$0")/setupMongoKeys.sh
55
fi
66

77
echo "aptitude install mongodb-mongosh"

setupMongoTools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
# Setup mongoDB Tools - src: https://www.mongodb.com/docs/database-tools/installation/installation-linux/
33
if [ ! -f ./.setupMongoKeys ]; then
4-
./setupMongoKeys.sh
4+
$(dirname "$0")//setupMongoKeys.sh
55
fi
66

77
echo "aptitude install mongodb-database-tools"

0 commit comments

Comments
 (0)