Skip to content

Commit 13520ea

Browse files
authored
Merge pull request #1 from mpareja/mpareja/improve-scripts
improve tooling scripts
2 parents b4fb377 + ee692ab commit 13520ea

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

import-database-directory.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ echo "= = ="
88

99
if [ -z ${MESSAGE_DB_HOME+x} ]; then
1010
echo "MESSAGE_DB_HOME is not set"
11-
exit
11+
exit 1
1212
fi
1313

1414
default_database_source="$MESSAGE_DB_HOME/message-db/database"

package.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env bash
22

3+
set -e
4+
35
./clean.sh
4-
./import-database-scripts.sh
6+
./import-database-directory.sh
57
npm pack

0 commit comments

Comments
 (0)