mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-10 07:47:09 +02:00
26 lines
692 B
Diff
26 lines
692 B
Diff
From 548464c0d58676225dc15f0604df7df1961abb83 Mon Sep 17 00:00:00 2001
|
|
From: Kaarle Ritvanen <kaarle.ritvanen@datakunkku.fi>
|
|
Date: Mon, 20 Feb 2017 11:12:15 +0200
|
|
Subject: [PATCH] zmlinkcontent: fix syntax error
|
|
|
|
---
|
|
zmlinkcontent.sh.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/zmlinkcontent.sh.in b/zmlinkcontent.sh.in
|
|
index 5f0d833..d6c7918 100755
|
|
--- a/zmlinkcontent.sh.in
|
|
+++ b/zmlinkcontent.sh.in
|
|
@@ -69,7 +69,7 @@ if [ -n "$ZM_CONFIG" ]; then
|
|
elif [ -f "zm.conf" ]; then
|
|
echo "Using local zm.conf"
|
|
source "zm.conf"
|
|
-elif [ -f "/etc/zm.conf"]; then
|
|
+elif [ -f "/etc/zm.conf" ]; then
|
|
echo "Using system zm.conf"
|
|
source "/etc/zm.conf"
|
|
else
|
|
--
|
|
2.9.3
|
|
|