view +mpm/install_location.m @ 1:2007c2cd566a

Add some functions for handeling state
author Jonatan Werpers <jonatan@werpers.com>
date Mon, 10 Sep 2018 14:55:47 +0200
parents
children
line wrap: on
line source

function p = install_location()
   nameCurrentFile = mfilename('fullpath');
   pathParts = split(nameCurrentFile, filesep);

   p = join(pathParts(1:end-2), filesep);
   p = p{1};
end