summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2015-10-25 21:27:51 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2015-10-25 21:27:51 +0100
commit0423704eb1a5930d63a5c75add26ccb5e9eb1ff2 (patch)
treebe11a64dca85a6c9e6bc9182643af7c08d455918 /Docs
parent4458b96ff289c3d85d89574e0678f665809b2ba7 (diff)
downloadnetsurf-0423704eb1a5930d63a5c75add26ccb5e9eb1ff2.tar.gz
netsurf-0423704eb1a5930d63a5c75add26ccb5e9eb1ff2.tar.bz2
Fix env.sh some more [ns-pull] for zsh
Diffstat (limited to 'Docs')
-rw-r--r--Docs/env.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/Docs/env.sh b/Docs/env.sh
index 84a438ab4..44c00a473 100644
--- a/Docs/env.sh
+++ b/Docs/env.sh
@@ -222,7 +222,7 @@ ns-package-install()
# git pull in all repos parameters are passed to git pull
ns-pull()
{
- for REPO in ${NS_BUILDSYSTEM} ${NS_INTERNAL_LIBS} ${NS_FRONTEND_LIBS} ${NS_TOOLS} ${NS_BROWSER} ; do
+ for REPO in $(echo ${NS_BUILDSYSTEM} ${NS_INTERNAL_LIBS} ${NS_FRONTEND_LIBS} ${NS_TOOLS} ${NS_BROWSER}) ; do
echo -n " GIT: Pulling ${REPO}: "
if [ -f "${TARGET_WORKSPACE}/${REPO}/.git/config" ]; then
(cd ${TARGET_WORKSPACE}/${REPO} && git pull $*; )