diff --git a/CHANGES.md b/CHANGES.md index 134a92da614..e5a17eab0f7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -18,6 +18,10 @@ Fixed Issues: * [#787](https://github.com/ckeditor/ckeditor-dev/issues/787): Fixed: Using cut inside nested table does not cut selected content. * [#842](https://github.com/ckeditor/ckeditor-dev/issues/842): Fixed: List style not restored when toggling list indent level in [Indent List](http://ckeditor.com/addon/indentlist) plugin. +Other Changes: + +* [#815](https://github.com/ckeditor/ckeditor-dev/issues/815): Removed Node.js dependency from CKEditor build script. + ## CKEditor 4.7.3 New Features: diff --git a/dev/builder/build.sh b/dev/builder/build.sh index 752153f4c9c..d0334abb80c 100755 --- a/dev/builder/build.sh +++ b/dev/builder/build.sh @@ -57,7 +57,7 @@ echo "Starting CKBuilder..." JAVA_ARGS=${ARGS// -t / } # Remove -t from args. -VERSION=`node -pe "require('./../../package.json').version"` +VERSION=$(grep '"version":' ./../../package.json | sed $'s/[\t\",: ]//g; s/version//g' | tr -d '[[:space:]]') REVISION=$(git rev-parse --verify --short HEAD) # If the current revision is not tagged with any CKE version, it means it's a "dirty" build. We