summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoan Touzet <joant@atypical.net>2017-09-28 13:58:33 -0400
committerJoan Touzet <wohali@users.noreply.github.com>2017-10-19 19:13:25 -0400
commit8075855a82c634489e0715fe4d5c35f60025fb73 (patch)
treeeac912863a86dccc91246d7c5a8ea5dd41c4668d
parent8b6e573a77c28ece69fadcb535854ee8a812d91d (diff)
downloadcouchdb-8075855a82c634489e0715fe4d5c35f60025fb73.tar.gz
Remove bashisms in remsh script
-rwxr-xr-xrel/overlay/bin/remsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/rel/overlay/bin/remsh b/rel/overlay/bin/remsh
index b409ceaa3..1c24761fd 100755
--- a/rel/overlay/bin/remsh
+++ b/rel/overlay/bin/remsh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
@@ -66,7 +66,7 @@ done
shift $((OPTIND - 1))
-if [[ ! -z "$VERBOSE" ]]; then
+if [ ! -z "$VERBOSE" ]; then
# cheap but it works
set -x
fi