view hgRevision.m @ 980:a3accd2f1283 feature/getBoundaryOp

Make mutliblock.DiffOp.getBoundaryOperator/Quadrature use scheme methods instead of properties.
author Martin Almquist <malmquist@stanford.edu>
date Mon, 07 Jan 2019 17:07:35 +0100
parents fd85412c7a99
children
line wrap: on
line source

% Returns the short mercurial revision Id.
%  ok is false if there are uncommited changes.
function [revId, ok] = hgRevision()
    [~, s] = system('hg id -i');
    revId = strtrim(s);

    ok = s(end) ~= '+';
end