• Roland Schilter's avatar
    Fix incomplete dependencies for `make scope/prog` · 1c4f0036
    Roland Schilter authored
    It seems that on my OS the passed param to find gets expanded early and
    thus the command
    
        $(shell find ./ -path ./vendor -prune -o -type f -name *.go)
    
    results in
    
            ./test.go ./vendor
    
    instead of including all the go files from subdirs. Quoting helps.
    1c4f0036