Explorar el Código

Code style: Minor improvements.

Kamil Piechaczek hace 7 años
padre
commit
cfc897cc41
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. 1 1
      scripts/release-ckeditor5.sh
  2. 2 2
      scripts/release/update-mgit-branches.js

+ 1 - 1
scripts/release-ckeditor5.sh

@@ -35,7 +35,7 @@ then
 	git push origin stable master && \
 	mgit exec 'git push origin stable'
 
-	# Add stable branches in all repos which don't have them yet.
+	# Add `stable` branches in all repos which don't have them yet.
 	mgit exec 'git checkout -b stable && git push origin stable && git checkout master'
 else
 	echo "Update the \"Releases\" section in README.md before starting the release process."

+ 2 - 2
scripts/release/update-mgit-branches.js

@@ -15,7 +15,7 @@ const mgitJsonPath = path.resolve( __dirname, '..', '..', 'mgit.json' );
 module.exports = function updateMgitBranches( branchName ) {
 	const log = logger();
 
-	log.info( 'Updating the mgit.json file...' );
+	log.info( 'Updating the "mgit.json"...' );
 
 	tools.updateJSONFile( mgitJsonPath, mgitJson => {
 		const dependencies = mgitJson.dependencies;
@@ -31,5 +31,5 @@ module.exports = function updateMgitBranches( branchName ) {
 		return mgitJson;
 	} );
 
-	logger().info( `Done. Mgit.json uses the "${ branchName }" branch now.` );
+	logger().info( `Done. "mgit.json" uses the "${ branchName }" branch now.` );
 };