Skip to content

Commit

Permalink
Updated Minifying text
Browse files Browse the repository at this point in the history
  • Loading branch information
codeAbinash committed Mar 21, 2023
1 parent 46b437e commit 1061896
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ bool mini(char* inputFileName , char* outputFileName) {
bool isMinified = minify(inputFileName , outputFileName);

if (isMinified) {
cout << "Minified Successfully: " << bright_green << outputFileName << '\n' << reset;
cout << "Done: " << bright_green << outputFileName << '\n' << reset;
cout << bright_grey << "Mini" << bright_blue << " :)" << '\n' << reset;
} else {
// cout << "Error: Minification Failed!" << '\n';
Expand Down
2 changes: 0 additions & 2 deletions main/minify.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@ bool minify(char* inputFileName , char* outputFileName) {

std::fclose(outputFile);

std::cout << "\n";

if (!isTokenized)
return false;

Expand Down

0 comments on commit 1061896

Please sign in to comment.