A simple way to do this would be

    until `/some/command`
    do
      sleep 1
    done

The backticks around the command make the `until` test for some output to be returned rather than testing the exit value of the command.