From 0250e6c58ebd342a11b91517ae3d0522a148ba21 Mon Sep 17 00:00:00 2001 From: Daniel Ricart Date: Wed, 16 Oct 2019 18:07:35 +0200 Subject: [PATCH] fixed typo in start.sh permissions assignment (#53) Found a typo in the `start.sh` file that prevented setting the correct execution permissions. --- scripts/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start.sh b/scripts/start.sh index 5143887..0e025bd 100755 --- a/scripts/start.sh +++ b/scripts/start.sh @@ -1,7 +1,7 @@ #!/bin/sh if [ ! -x /app/mikrotik-exporter ]; then - chmod 755 /app/mikrotik-expoter + chmod 755 /app/mikrotik-exporter fi if [ -z "$CONFIG_FILE" ]