diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-05-13 16:29:39 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-05-13 16:29:39 +0000 |
commit | 42fa7d020e7ceac68fc14e49fa11b90a2ae7fa21 (patch) | |
tree | 8f3ddd47bb3183f366a5f7a5240109f22fec1758 /scripts | |
parent | 4472c6f51b8c85b1d6d345338002964601fdb214 (diff) | |
download | upstream-42fa7d020e7ceac68fc14e49fa11b90a2ae7fa21.tar.gz upstream-42fa7d020e7ceac68fc14e49fa11b90a2ae7fa21.tar.bz2 upstream-42fa7d020e7ceac68fc14e49fa11b90a2ae7fa21.zip |
scripts/ipkg-make-index.sh: use bash instead of /bin/sh to fix use of [[ ]]
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31708 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/ipkg-make-index.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ipkg-make-index.sh b/scripts/ipkg-make-index.sh index a529f28ef5..31b4327da3 100755 --- a/scripts/ipkg-make-index.sh +++ b/scripts/ipkg-make-index.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash set -e pkg_dir=$1 |