We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca59345 commit 8741cedCopy full SHA for 8741ced
1 file changed
tools/github_actions_download.sh
@@ -3,4 +3,7 @@
3
if [ "${MNE_CI_KIND}" != "minimal" ]; then
4
python -c 'import mne; mne.datasets.testing.data_path(verbose=True)';
5
python -c "import mne; mne.datasets.misc.data_path(verbose=True)";
6
+ # Make read-only to make sure we don't modify its contents
7
+ PATH=$(python -c "import mne; print(mne.datasets.testing.data_path(verbose=False))")
8
+ chmod -R a-w "$PATH"
9
fi
0 commit comments