From 9ab932d9ba5eedb14f52780935cb888f8f543f8f Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sun, 7 Apr 2019 18:38:34 +0200 Subject: [PATCH] Remove redundant "ERROR: " prefix --- bin/install-jsdeps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-jsdeps.sh b/bin/install-jsdeps.sh index baac19f60..b0df1f763 100755 --- a/bin/install-jsdeps.sh +++ b/bin/install-jsdeps.sh @@ -31,7 +31,7 @@ $cfgfile = INSTALL_PATH . 'jsdeps.json'; $SOURCES = json_decode(file_get_contents($cfgfile), true); if (empty($SOURCES['dependencies'])) { - rcube::raise_error("ERROR: Failed to read dependencies list from $cfgfile", false, true); + rcube::raise_error("Failed to read dependencies list from $cfgfile", false, true); } $CURL = trim(`which curl`);