aboutsummaryrefslogtreecommitdiff
path: root/test/wrong_command.c
blob: ef835b3d30bbbfa172304052c85da1deeb8d8f26 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

int main(void) {
	fprintf(stderr, "\x1B[31m\e[1m"
		"This is not the command you are looking for.\n"
		"You probably want to run 'ninja tests' instead "
		"(note the 's' at the end).\n"
		"\e[0m");
	return 1;
}