diff --git a/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js b/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js index 12b988e07558..201e6116f1a7 100644 --- a/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js +++ b/lib/node_modules/@stdlib/_tools/scripts/publish_packages.js @@ -606,6 +606,16 @@ function onTopics( error, data, info ) { console.log( 'Rate limit: '+JSON.stringify( info ) ); } +/** +* Adds executable permission to `bin/cli` files. +* +* @private +* @param {Object} git - `git` class instance +*/ +function updatePermissions( git ) { + shell( 'find '+git.cwd+' -regex \'.*/bin/cli\' -print0 | xargs -r -0 chmod +x' ); +} + /** * Publishes a package to the respective GitHub repository. * @@ -1295,16 +1305,6 @@ function publish( pkg, clbk ) { invokeCallback(); } - /** - * Adds executable permission to `bin/cli` files. - * - * @private - * @param {Object} git - `git` class instance - */ - function updatePermissions( git ) { - shell( 'find '+git.cwd+' -regex \'.*/bin/cli\' -print0 | xargs -r -0 chmod +x' ); - } - /** * Replacer function for inserting an install section before a usage section. * diff --git a/lib/node_modules/@stdlib/assert/is-integer-array/examples/index.js b/lib/node_modules/@stdlib/assert/is-integer-array/examples/index.js index b7a20a29366f..83b08a076e3b 100644 --- a/lib/node_modules/@stdlib/assert/is-integer-array/examples/index.js +++ b/lib/node_modules/@stdlib/assert/is-integer-array/examples/index.js @@ -16,8 +16,6 @@ * limitations under the License. */ -/* eslint-disable no-new-wrappers */ - 'use strict'; var Number = require( '@stdlib/number/ctor' );