Browse Source

Replace sh to bash

Vova Tkach 6 years ago
parent
commit
b65417173b
3 changed files with 3 additions and 3 deletions
  1. 1 1
      funcs.sh
  2. 1 1
      loop.sh
  3. 1 1
      run.sh

+ 1 - 1
funcs.sh

@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 check_util() {
 	util_name="$1"

+ 1 - 1
loop.sh

@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 # Main daemon body
 echo "Loop. Every one second. Do something here..."

+ 1 - 1
run.sh

@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
 
 SETT_DAEMON_MODE=1
 SETT_DAEMON_PATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"