Skip to content
Snippets Groups Projects
Verified Commit 83427a00 authored by Thomas Lambert's avatar Thomas Lambert :helicopter:
Browse files

fix(rotare): potential path issue

parent ed3e22ab
No related branches found
No related tags found
No related merge requests found
...@@ -48,10 +48,14 @@ function [Results] = rotare(configFile) ...@@ -48,10 +48,14 @@ function [Results] = rotare(configFile)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Cleanup, imports and environment setting % Cleanup, imports and environment setting
clearvars -except configFile; % clearvars -except configFile;
close all; close all;
clc; clc;
% Add everything to path
% BUT, only include root of airfoil_data, otherwise issue with aeropy examples in venv
addpath(genpath('.')); addpath(genpath('.'));
rmpath(genpath('./airfoil_data/'));
addpath('./airfoil_data/');
verifyinstall; % Check if packages (libs) and required functions are presents on the system verifyinstall; % Check if packages (libs) and required functions are presents on the system
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment