Skip to content

Commit

Permalink
(#101) Check for MacOS deps on all dev scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mario4tier committed Oct 14, 2024
1 parent e1ea396 commit 299f2a8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/dev/start-daemon
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ source "$SUIBASE_DIR/scripts/common/__apps.sh"
# shellcheck source=SCRIPTDIR/../common/__suibase-daemon.sh
source "$SUIBASE_DIR/scripts/common/__suibase-daemon.sh"

exit_if_not_installed
exit_if_deps_missing

cli_mutex_lock "suibase_daemon"

start_suibase_daemon
3 changes: 3 additions & 0 deletions scripts/dev/stop-daemon
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ source "$SUIBASE_DIR/scripts/common/__apps.sh"
# shellcheck source=SCRIPTDIR/../common/__suibase-daemon.sh
source "$SUIBASE_DIR/scripts/common/__suibase-daemon.sh"

exit_if_not_installed
exit_if_deps_missing

cli_mutex_lock "suibase_daemon"

# Force stop the daemon by deleting the binary first.
Expand Down
3 changes: 3 additions & 0 deletions scripts/dev/update-daemon
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ source "$SUIBASE_DIR/scripts/common/__apps.sh"
# shellcheck source=SCRIPTDIR/../common/__suibase-daemon.sh
source "$SUIBASE_DIR/scripts/common/__suibase-daemon.sh"

exit_if_not_installed
exit_if_deps_missing

cli_mutex_lock "suibase_daemon"

# Stop the daemon. Force rebuild by deleting the binary.
Expand Down

0 comments on commit 299f2a8

Please sign in to comment.