Skip to content

Commit

Permalink
Nift v1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
n-ham committed Aug 20, 2019
1 parent 4506de2 commit 76f6e23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions PageBuilder.cpp
Expand Up @@ -9,7 +9,7 @@ int PageBuilder::build(const PageInfo &PageToBuild)
{
pageToBuild = PageToBuild;

std::cout << std::endl;
//std::cout << std::endl;

//ensures content and template files exist
if(!std::ifstream(pageToBuild.contentPath.str()))
Expand All @@ -23,7 +23,7 @@ int PageBuilder::build(const PageInfo &PageToBuild)
return 1;
}

std::cout << "building page " << pageToBuild.pagePath << std::endl;
//std::cout << "building page " << pageToBuild.pagePath << std::endl;

//makes sure variables are at default values
codeBlockDepth = htmlCommentDepth = 0;
Expand Down Expand Up @@ -86,7 +86,7 @@ int PageBuilder::build(const PageInfo &PageToBuild)
//makes sure user can't accidentally write to info file
chmod(pageInfoPath.str().c_str(), 0444);

std::cout << "page build successful" << std::endl;
//std::cout << "page build successful" << std::endl;

return 0;
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@

Copyright (c) 2015-present [Nicholas Ham](https://n-ham.com).

This is an official (GitHub) repository for nifty-site-manager, a cross-platform git-like and LaTeX-like command-line site manager.
This is an official (GitHub) repository for Nift, a cross-platform git-like and LaTeX-like command-line site manager.

Website:
\[[official](https://nift.cc)\] \[[bitbucket](https://nifty-site-manager.bitbucket.io)\] \[[github](https://nifty-site-manager.github.io)\] \[[gitlab](https://nifty-site-manager.gitlab.io)\] \[[Netlify](https://nifty-site-manager.netlify.com/)\]
Expand Down

0 comments on commit 76f6e23

Please sign in to comment.