From 9cf427c38524c5f9e2573b169f76080494288fb8 Mon Sep 17 00:00:00 2001 From: BJR Matos Date: Sun, 26 Jun 2016 22:20:06 -0500 Subject: [PATCH] remove space in node hashbang --- bin/build.js | 4 ++-- bin/start.js | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) mode change 100644 => 100755 bin/build.js mode change 100644 => 100755 bin/start.js diff --git a/bin/build.js b/bin/build.js old mode 100644 new mode 100755 index 1bd22ba..e48b0b3 --- a/bin/build.js +++ b/bin/build.js @@ -1,4 +1,4 @@ -#! /usr/bin/env node +#!/usr/bin/env node var webpack = require('webpack') var exposedLibraries = ['react', 'react-dom', 'superagent', 'react-list', 'bluebird', 'socket.io-client', 'filesaver.js-npm'] @@ -92,4 +92,4 @@ webpack({ console.log(stats.toString({ colors: true, chunks: true, cached: false })) console.log('webpack build ok') -}) \ No newline at end of file +}) diff --git a/bin/start.js b/bin/start.js old mode 100644 new mode 100755 index 46e0d22..436df66 --- a/bin/start.js +++ b/bin/start.js @@ -1,4 +1,4 @@ -#! /usr/bin/env node +#!/usr/bin/env node var fs = require('fs') var path = require('path') var execSync = require('child_process').execSync @@ -53,4 +53,3 @@ var jsreport = require(path.join(process.cwd(), 'node_modules', 'jsreport')) jsreport().init().catch(function (e) { console.error(e) }) -