summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-10-18 12:37:27 -0400
committerJoram Wilander <jwawilander@gmail.com>2016-10-18 12:37:27 -0400
commit821f1f9a033aee4cec59250ee702fefb68f1d41e (patch)
treecbfc426fe2f294063d84062877a69c12379bb1e0 /Makefile
parentd14a44cf98ad746e3067aa425144602bc27cfb0a (diff)
downloadchat-821f1f9a033aee4cec59250ee702fefb68f1d41e.tar.gz
chat-821f1f9a033aee4cec59250ee702fefb68f1d41e.tar.bz2
chat-821f1f9a033aee4cec59250ee702fefb68f1d41e.zip
Added -e to sed command in Makefile to make it work on all platforms (#4256)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0017c09a6..ab507dcee 100644
--- a/Makefile
+++ b/Makefile
@@ -299,7 +299,7 @@ package: build build-client
cp -RL i18n $(DIST_PATH)
@# Disable developer settings
- sed -i'' 's|"ConsoleLevel": "DEBUG",|"ConsoleLevel": "INFO",|g' $(DIST_PATH)/config/config.json;
+ sed -i'' -e 's|"ConsoleLevel": "DEBUG"|"ConsoleLevel": "INFO"|g' $(DIST_PATH)/config/config.json
@# Package webapp
mkdir -p $(DIST_PATH)/webapp/dist