瀏覽代碼

This build should pass.

Kamil Piechaczek 7 年之前
父節點
當前提交
be70c232a7
共有 1 個文件被更改,包括 1 次插入6 次删除
  1. 1 6
      scripts/docs/build-and-publish-nightly.js

+ 1 - 6
scripts/docs/build-and-publish-nightly.js

@@ -15,11 +15,6 @@ This script is to be used on CI to automatically update https://ckeditor5.github
 
 */
 
-const { tools } = require( '@ckeditor/ckeditor5-dev-utils' );
-
-console.log( 'This build should fail.' );
-console.log( exec( 'this-command-should-fail-because-it-should-not-exist' ) );
-
 // Build the documentation only when master branch is updated.
 if ( process.env.TRAVIS_BRANCH !== 'master' ) {
 	process.exit();
@@ -31,7 +26,7 @@ if ( process.env.TRAVIS_EVENT_TYPE !== 'cron' ) {
 }
 
 const path = require( 'path' );
-// const { tools } = require( '@ckeditor/ckeditor5-dev-utils' );
+const { tools } = require( '@ckeditor/ckeditor5-dev-utils' );
 
 const mainRepoUrl = 'https://github.com/CKEditor5/ckeditor5.github.io';