Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
Update brew bundle command and fix variable naming in ModelDownloader…
Browse files Browse the repository at this point in the history
… constructor
  • Loading branch information
royshil committed Mar 19, 2024
1 parent efcff5a commit 26a1a27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/utils.zsh/check_macos
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ if (( ! ${+commands[brew]} )) {
return 2
}

brew bundle --file ${SCRIPT_HOME}/.Brewfile
brew bundle --no-upgrade --file ${SCRIPT_HOME}/.Brewfile
rehash
log_group
4 changes: 2 additions & 2 deletions src/model-utils/model-downloader-ui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ size_t write_data(void *ptr, size_t size, size_t nmemb, FILE *stream)
return written;
}

ModelDownloader::ModelDownloader(const ModelInfo &model_info,
ModelDownloader::ModelDownloader(const ModelInfo &model_info_,
download_finished_callback_t download_finished_callback_,
QWidget *parent)
: QDialog(parent),
download_finished_callback(download_finished_callback_),
model_info(model_info)
model_info(model_info_)
{
this->setWindowTitle("Downloading model...");
this->setWindowFlags(Qt::Dialog | Qt::WindowTitleHint | Qt::CustomizeWindowHint);
Expand Down

0 comments on commit 26a1a27

Please sign in to comment.