From d0df9706a70009799b865f76a94f90b1a21411d2 Mon Sep 17 00:00:00 2001 From: Sean Grady Date: Fri, 14 Jun 2019 10:27:45 -0400 Subject: [PATCH] Small script fix for shebang, which to type Signed-off-by: Sean Grady --- bin/nodeCluster.sh | 6 +++--- bin/nodeServer.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/nodeCluster.sh b/bin/nodeCluster.sh index 72dfb8c3..7ae44805 100755 --- a/bin/nodeCluster.sh +++ b/bin/nodeCluster.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # This program and the accompanying materials are # made available under the terms of the Eclipse Public License v2.0 which accompanies # this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html @@ -133,8 +133,8 @@ export minWorkers=2 echo Show Environment env -echo Show which node -which node +echo Show location of node +type node echo Starting node diff --git a/bin/nodeServer.sh b/bin/nodeServer.sh index 6106feea..f75b338a 100755 --- a/bin/nodeServer.sh +++ b/bin/nodeServer.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # This program and the accompanying materials are # made available under the terms of the Eclipse Public License v2.0 which accompanies # this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html