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 58a50ab commit 14556acCopy full SHA for 14556ac
.evergreen/check-release-archive.sh
@@ -2,6 +2,13 @@
2
set -o xtrace # Write all commands first to stderr
3
set -o errexit # Exit the script with error if any of the commands fail
4
5
+# Check that a CLion user didn't accidentally convert NEWS from UTF-8 to ASCII
6
+news_type=`file NEWS`
7
+echo "NEWS file type is $news_type"
8
+case "$news_type" in
9
+ *ASCII*) exit 1 ;;
10
+esac
11
+
12
# Use modern sphinx-build from venv.
13
. venv/bin/activate
14
which sphinx-build
0 commit comments