From afedad687a5cd53a6bb69c1dc65bd9c4ca6701b6 Mon Sep 17 00:00:00 2001 From: Le Yao Date: Mon, 24 May 2021 05:52:14 +0000 Subject: [PATCH] Fix the entrypoint typo Signed-off-by: Le Yao Change-Id: I4391bfa8a9bbd58fd687f489ba0ebb5b1e49be47 --- central-controller/build/entrypoint | 46 ++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/central-controller/build/entrypoint b/central-controller/build/entrypoint index b1d78a3..211ce5e 100644 --- a/central-controller/build/entrypoint +++ b/central-controller/build/entrypoint @@ -1,23 +1,23 @@ -#!/bin/sh -e - -cmd=${1:-""} - -case ${cmd} in - "scc") - ./scc - ;; - - "rsync") - ./rsync - ;; - - "monitor") - ./monitor - ;; - - *) - echo "invalid command ${cmd}" - sleep infinity - -esac - +#!/bin/sh -e + +cmd=${1:-""} + +case ${cmd} in + "scc") + ./scc + ;; + + "rsync") + ./rsync + ;; + + "monitor") + ./monitor + ;; + + *) + echo "invalid command ${cmd}" + sleep infinity + +esac + -- 2.16.6