From a9495cd3cfb98f2c09e0d1085dfda7b438c452f5 Mon Sep 17 00:00:00 2001 From: Vincent Sellier <vsellier@exoplatform.com> Date: Sat, 23 Jun 2018 17:52:44 +0200 Subject: [PATCH] change shebang --- create-instance.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/create-instance.sh b/create-instance.sh index e22f829..eea2549 100755 --- a/create-instance.sh +++ b/create-instance.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash if [ $# -ne 1 ]; then echo "Usage: $0 <instance url>" @@ -10,7 +10,7 @@ source .env TMPFILE=$(mktemp /tmp/cozyXXX) -echo "Creating instance ${INSTANCE_ID}.${COZY_TLD}..." +echo "Creating instance ${INSTANCE_ID}.${COZY_TLD} ..." docker-compose exec cozy ./cozy instances add --host 0.0.0.0 --apps drive,photos,collect,settings,onboarding "${INSTANCE_ID}.${COZY_TLD}" | tee "${TMPFILE}" -- GitLab