Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorIvan Vučica <ivan@vucica.net>2015-11-19 17:03:33 +0300
committerIvan Vučica <ivan@vucica.net>2015-11-19 17:03:33 +0300
commit12777c75de013df0cab2e4dd93518e817cea0b1e (patch)
treeaeb87b3498f08d26d796bb3d6b3e84643846b4a1 /bin
parent69fca75d45a5e4ccbb72cba6f961888d3dee95d2 (diff)
clone.sh should use bash due to bashisms
Bashisms pushd/popd don't work so well if /bin/sh is dash, as is the case on a Debian machine.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/clone.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/clone.sh b/bin/clone.sh
index d1195b3..e40aa11 100755
--- a/bin/clone.sh
+++ b/bin/clone.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
if [ "$#" -ne 1 ] || ! [ -d "$1" ]; then
echo "Usage: $0 DIRECTORY_TO_CLONE_INTO" >&2