Skip to content

Commit

Permalink
added demo video
Browse files Browse the repository at this point in the history
  • Loading branch information
DeaSTL committed Feb 12, 2024
1 parent f68c438 commit 93b27c4
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
Binary file added source/gif/frate-demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added source/videos/frate-demo.mp4
Binary file not shown.
1 change: 0 additions & 1 deletion src/Command/Package/Package.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ namespace Frate::Command::Packages {

bool dependenciesConflict(std::vector<Dependency> deps, std::string &name) {
if (deps.size() == 0) {
Utils::error << "No dependencies found" << std::endl;
return false;
}
for (Dependency dep : deps) {
Expand Down
4 changes: 2 additions & 2 deletions src/Project/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
#include <nlohmann/json_fwd.hpp>

namespace Frate::Project {


bool Config::save() {

Expand Down Expand Up @@ -37,7 +36,8 @@ namespace Frate::Project {
}
json new_json = *this;

Utils::info << "Writing to file: " << this->path / file_name << std::endl;
Utils::verbose << "Writing to file: " << this->path / file_name
<< std::endl;

try {
file.open(this->path / file_name);
Expand Down

0 comments on commit 93b27c4

Please sign in to comment.