diff --git a/dev/+ommtools/codespellToolbox.m b/dev/+ommtools/codespellToolbox.m index c2116104..e0c9a48f 100644 --- a/dev/+ommtools/codespellToolbox.m +++ b/dev/+ommtools/codespellToolbox.m @@ -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 diff --git a/dev/+ommtools/installMatBox.m b/dev/+ommtools/installMatBox.m index ca5e2a66..3eb002b5 100644 --- a/dev/+ommtools/installMatBox.m +++ b/dev/+ommtools/installMatBox.m @@ -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);