diff --git a/gitmoji.txt b/gitmoji.txt index c0fed39f..dd3dce22 100644 --- a/gitmoji.txt +++ b/gitmoji.txt @@ -78,3 +78,6 @@ https://www.nerdfonts.com/cheat-sheet (terminal based) :thread: .......................... add or update code related to multithreading or concurrency......  artix/atlassin(for use in bash/prompt) ﴂ +cancel/deleted/x ✗  +check-mark ✓ +right-arrow ➜ diff --git a/scripts/dependencycheck b/scripts/dependencycheck index ff58892e..132d1e92 100755 --- a/scripts/dependencycheck +++ b/scripts/dependencycheck @@ -18,7 +18,7 @@ function dependencycheck() for ((i = 0; i < numdependencies; i++)) ; do if ! command -v "${dependencies[$i]}" &> /dev/null ; then - echo "${txtred}  dependency not met: ${dependencies[$i]}${txtwhite}" + echo "${txtred} ✗ dependency not met: ${dependencies[$i]}${txtwhite}" missingdependencies=$((missingdependencies+1)) else echo "${txtgreen}  dependency met: ${dependencies[$i]}${txtwhite}"