From f2b3ea81945c98c7fd484ba327fb746645bcf599 Mon Sep 17 00:00:00 2001 From: luo rixin Date: Mon, 16 Dec 2019 10:32:01 +0800 Subject: [PATCH] stop.sh: use bash shell to solve syntax error When running on ubuntu 18.04 for aarch64, there is syntax error in line 52, caused by the /bin/sh is defalut to dash, which is not support array type. Signed-off-by: luo rixin --- src/stop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stop.sh b/src/stop.sh index 0a71752d1d4..c539e0bf30c 100755 --- a/src/stop.sh +++ b/src/stop.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash # # Copyright (C) 2013 Inktank # Copyright (C) 2013 Cloudwatt -- 2.39.5