I want to get a user's validation before running a command.
I've tried all methods here
.PHONY: rebuild validate
rebuild:
    @echo "rebuilding cluster to previous stable state"
    @echo "Do you wish to continue (y/n)?"
    select yn in "Yes" "No"
        case $yn in
            Yes ) make validate;;
            No ) exit;;
    esac
validate:
        .....
I get the following error:
rebuilding cluster to previous stable state
Do you wish to continue (y/n)?
select yn in "Yes" "No"
/bin/sh: -c: line 1: syntax error: unexpected end of file
make: *** [rebuild] Error 2
EDIT
Tried :
rebuild:
    @echo "rebuilding cluster to previous stable state"
    @read -p "Are you sure? " -n 1 -r
    @echo    
    if [[ REPLY =~ ^[Yy] ]]
    then
        make validate
    fi  
Errors with:
rebuilding cluster to previous stable state
Are you sure? y
if [[ REPLY =~ ^[Yy] ]]
/bin/sh: -c: line 1: syntax error: unexpected end of file
make: *** [rebuild] Error 2
                Makefiles are not shell scripts. Each line runs in a separate shell with a separate environment.
You can work around this by specifying the read and 'if' on the same line (here broken with backslashes):
SHELL=bash
rebuild:
        @echo "rebuilding cluster to previous stable state"
        @read -p "Are you sure? " -n 1 -r; \
        if [[ $$REPLY =~ ^[Yy] ]]; \
        then \
            make validate; \
        fi
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With