Remove outdated postgres check and dep from shell.nix

main
Sashanoraa 2023-12-03 03:13:44 -05:00 zatwierdzone przez Edward Loveall
rodzic 69b3fb570e
commit 10af5c91c3
Nie znaleziono w bazie danych klucza dla tego podpisu
2 zmienionych plików z 0 dodań i 12 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -10,7 +10,6 @@ pkgs.mkShell {
overmind
nodejs
openssl.dev
postgresql
shards
yarn
];