summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoan Touzet <joant@atypical.net>2017-09-28 13:58:33 -0400
committerJoan Touzet <joant@atypical.net>2017-09-28 13:58:33 -0400
commitda4fea194c012bd77a5a366e7ef5cf5a0abb43d9 (patch)
tree0bdc9a93e51f6819e3f4c4ae4e9aa887c34e0579
parent30fcd7bb9fc570136269db0c9750e718847e1640 (diff)
downloadcouchdb-da4fea194c012bd77a5a366e7ef5cf5a0abb43d9.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