Author:
Hash:
Timestamp:
+3 -5 +/-1 browse
Kevin Schoon [me@kevinschoon.com]
5790dcb996c6376a791d5198dbdf21b8da12cbcf
Tue, 20 May 2025 10:17:25 +0000 (6 months ago)
| 1 | diff --git a/scripts/check_build_dependencies.sh b/scripts/check_build_dependencies.sh |
| 2 | index 3f3bc43..5620385 100755 |
| 3 | --- a/scripts/check_build_dependencies.sh |
| 4 | +++ b/scripts/check_build_dependencies.sh |
| 5 | @@ -25,7 +25,7 @@ check_library() { |
| 6 | FAILED="true" |
| 7 | return |
| 8 | } |
| 9 | - echo "library $1 OK" |
| 10 | + echo "library $1 ${GREEN}OK${RESET}" |
| 11 | } |
| 12 | |
| 13 | check_cmd "cargo" |
| 14 | @@ -33,12 +33,10 @@ check_cmd "cargo-watch" |
| 15 | check_cmd "cc" |
| 16 | check_cmd "djlint" # format / lint jinja html templates |
| 17 | check_cmd "fc-list" # fontconfig |
| 18 | - check_cmd "npm" |
| 19 | check_cmd "pkg-config" |
| 20 | - check_cmd "sassc" |
| 21 | check_cmd "shellcheck" |
| 22 | - check_cmd "sqlx" |
| 23 | - check_cmd "sqlite3" |
| 24 | + # check_cmd "sqlx" |
| 25 | + # check_cmd "sqlite3" |
| 26 | |
| 27 | # check for openssl which annoyingly is required to build sqlx-cli if that is |
| 28 | # being installed from a non-distribution package i.e. cargo install |