Skip to content

Commit

Permalink
Merge pull request #833 from ckeditor/t/815
Browse files Browse the repository at this point in the history
Removed nodejs dependency in build.sh script
  • Loading branch information
f1ames authored Sep 18, 2017
2 parents 78e340f + a7277fc commit 14324de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion dev/builder/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 14324de

Please sign in to comment.