Fuko
Fuko
It is possible to add a check on the $OSTYPE variable for installation on macOS. ```sh if [[ "$OSTYPE" == "darwin"* ]]; then if command -v brew >/dev/null 2>&1; then...
Hi @0xlildoudou I attempted to run the script, but it failed on macOS due to dependency issues. I found a solution, but it's not compatible with the 'sh' shell. I'm...
Yes, I use verbose option. ``` + shift + '[' 0 -gt 0 ']' + check_dependencies git python3 python3-venv docker sudo + MISSING_DEPENDENCIES=0 + '[' 5 -gt 0 ']' ++...
@0xlildoudou ### Test new commit With the new changes, I no longer meet the condition below. ```sh if [ -f "$lsb_dist" ]; then if command -v brew >/dev/null 2>&1; then...