Upgrade to Lucky 0.30.1

Upgrading to 0.31.0 should be very easy. It's just running `shards
update` in the root of the project. That should be all.
This commit is contained in:
Edward Loveall
2022-07-17 11:55:51 -04:00
parent 740230d451
commit 35b72ada37
5 changed files with 18 additions and 30 deletions

View File

@@ -4,7 +4,7 @@ source script/helpers/text_helpers
source script/helpers/function_helpers
# Use this script to check the system for required tools and process that your app needs.
# A few helper functions are provided to make writing bash a little easier. See the
# A few helper functions are provided to make writing bash a little easier. See the
# script/helpers/function_helpers file for more examples.
#
# A few examples you might use here:
@@ -17,11 +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
# Only if this isn't CI
if [ -z "$CI" ]; then
lucky ensure_process_runner_installed
fi
if command_not_found "createdb"; then
MSG="Please install the postgres CLI tools, then try again."
if is_mac; then
@@ -38,5 +33,3 @@ fi
# if command_not_running "redis-cli ping"; then
# print_error "Redis is not running."
# fi