File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ debug: clean
31
31
$(CC ) -g $(CFLAGS ) $(LIBS ) $(SRCS ) -o $(BIN )$(TARGET )
32
32
33
33
clean :
34
- rm -rf $(BIN )$(TARGET ) bin src/web/mail
34
+ rm -rf $(BIN )$(TARGET ) bin
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ int main(int argc, char* argv[]) {
67
67
68
68
if (argc == 3 ) {
69
69
outputFile.open (" src/web/mail" );
70
- outputFile << " no mail for you ¯\\ _(ツ)_/¯" << endl;
70
+ outputFile << " no mail for you<br/> ¯\\ _(ツ)_/¯" << endl;
71
71
outputFile.close ();
72
72
}
73
73
@@ -105,7 +105,10 @@ int main(int argc, char* argv[]) {
105
105
outputFile.close ();
106
106
}
107
107
else if (buf[0 ] == nomail) {
108
- exec (" rm src/web/mail" );
108
+ /* exec("rm src/web/mail"); */
109
+ outputFile.open (" src/web/mail" );
110
+ outputFile << " no mail for you<br/>¯\\ _(ツ)_/¯" << endl;
111
+ outputFile.close ();
109
112
printf (" Mail is gone..." );
110
113
}
111
114
Original file line number Diff line number Diff line change 1
1
setTimeout ( function ( ) {
2
2
window . location . reload ( 1 ) ;
3
3
4
- } , 1000 ) ;
4
+ } , 1250 ) ;
You can’t perform that action at this time.
0 commit comments