From 10af5c91c3b2bcaf195c5cb7bfe395e600708fe6 Mon Sep 17 00:00:00 2001 From: Sashanoraa Date: Sun, 3 Dec 2023 03:13:44 -0500 Subject: [PATCH] Remove outdated postgres check and dep from shell.nix --- script/system_check | 11 ----------- shell.nix | 1 - 2 files changed, 12 deletions(-) diff --git a/script/system_check b/script/system_check index 8b8060e..104f3a9 100755 --- a/script/system_check +++ b/script/system_check @@ -17,17 +17,6 @@ if command_not_found "yarn"; then print_error "Yarn is not installed\n See https://yarnpkg.com/lang/en/docs/install/ for install instructions." fi -if command_not_found "createdb"; then - MSG="Please install the postgres CLI tools, then try again." - if is_mac; then - MSG="$MSG\nIf you're using Postgres.app, see https://postgresapp.com/documentation/cli-tools.html." - fi - MSG="$MSG\nSee https://www.postgresql.org/docs/current/tutorial-install.html for install instructions." - - print_error "$MSG" -fi - - ## CUSTOM PRE-BOOT CHECKS ## # example: # if command_not_running "redis-cli ping"; then diff --git a/shell.nix b/shell.nix index 06da585..19d09fe 100644 --- a/shell.nix +++ b/shell.nix @@ -10,7 +10,6 @@ pkgs.mkShell { overmind nodejs openssl.dev - postgresql shards yarn ];