Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
ehennestad committed Oct 26, 2024
1 parent 2948c0e commit 2170225
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions dev/+ommtools/codespellToolbox.m
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ function codespellToolbox()
codeDirectory = fullfile(projectRootDirectory, "code");

matbox.tasks.codespellToolbox(codeDirectory, ...
"RequireCodespellPassing", true, ...
"Skip", "./schemas/**", ...
"IgnoreFilePath", fullfile(projectRootDirectory, 'dev', '.codespell_ignore'))
end
3 changes: 2 additions & 1 deletion dev/+ommtools/installMatBox.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ function installFromCommit()

% Move to installation location
[~, repoFolderName] = fileparts(unzippedFolder);
targetFolder = fullfile(userpath, "Add-Ons");
%targetFolder = fullfile(userpath, "Add-Ons");
targetFolder = fullfile(matlab.internal.addons.util.retrieveAddOnsInstallationFolder(), 'Toolboxes', 'Additional Software');
targetFolder = fullfile(targetFolder, repoFolderName);
if isfolder(targetFolder); rmdir(targetFolder, "s"); end
movefile(unzippedFolder, targetFolder);
Expand Down

0 comments on commit 2170225

Please sign in to comment.