mirror of
https://github.com/openharmony/third_party_libfuse.git
synced 2026-07-21 00:45:56 -04:00
e372d610ba
Together with the previous commit, this fixes #156.
10 lines
211 B
C
10 lines
211 B
C
#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 'python3 -m pytest test/' instead"
|
|
"\e[0m\n");
|
|
return 1;
|
|
}
|