Skip to content

Commit abba735

Browse files
committed
make compile_mex error to stderr as intended, edits for release version
1 parent bcb6da2 commit abba735

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

@xmltree/private/compile_mex.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ case "$target" in
3232
echo
3333
;;
3434
(*)
35-
echo "internal error" 2>&1
35+
echo "internal error" 1>&2
3636
exit 2
3737
;;
3838
esac

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ folder.
1818

1919
The cifti structure returned by this library uses 0-based
2020
indices for vertex and voxel indices, 1-based for cifti indices, and
21-
the helper functions return 1-based indices for everything. This library
22-
is in beta testing, and while function names and other conventions are
23-
expected to be near-final, it is possible they could be changed before
24-
a full release.
21+
the helper functions return 1-based indices for everything.
2522

2623
# Usage
2724
All exposed functions have usage information available through the `help` command:

cifti_write.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function cifti_write(cifti, filename, varargin)
1717
% >> cifti.cdata = outdata;
1818
% >> cifti.diminfo{2} = cifti_diminfo_make_scalars(size(outdata, 2));
1919
% >> cifti_write(cifti, 'ciftiout.dscalar.nii');
20-
libversion = '2.0.0-beta.1';
20+
libversion = '2.0.0';
2121
options = myargparse(varargin, {'stacklevel', 'disableprovenance', 'keepmetadata'}); %stacklevel is an implementation detail, don't add to help
2222
if isempty(options.stacklevel) %stacklevel is so that so it doesn't get "ciftisave" all the time
2323
options.stacklevel = 2;

0 commit comments

Comments
 (0)