diff options
Diffstat (limited to 'src/partialator.c')
-rw-r--r-- | src/partialator.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/partialator.c b/src/partialator.c index 3dce172c..0541e54a 100644 --- a/src/partialator.c +++ b/src/partialator.c @@ -1164,13 +1164,12 @@ int main(int argc, char *argv[]) int r = mkdir("pr-logs", S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH); if ( r ) { if ( errno == EEXIST ) { - ERROR("A folder called 'pr-logs' exists in the " - "working directory.\n"); - ERROR("Please delete or move it first.\n"); + ERROR("WARNING: pr-logs folder already exists. " + "Beware of mixing old and new log files!\n"); } else { ERROR("Failed to create pr-logs folder.\n"); + return 1; } - return 1; } } |