Prospective fix for nightly

We modify the README in the nightly step before, so remove the sanity check. The README is not perfect yet though.
This commit is contained in:
Simon Hausmann 2024-09-25 10:25:20 +02:00 committed by GitHub
parent 2feac79b24
commit 3ea61fc96b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,16 +4,6 @@
cd `dirname $0`/../editors/vscode
modified_files="README.md package.json"
git diff --quiet $modified_files
if [ $? -ne 0 ]; then
echo "Aborting, there are local changes to $modified_files . Please commit or undo."
exit 1
fi
git checkout $modified_files
# The version number is a shortend time stamp of the last commit
nightly_version=`git log -1 --format=%cd --date="format:%Y.%-m.%-d%H"`
last_commit=`git log -1 --format=%H`