| commit | ea58248f8c070f656d9afbd36672267047a87733 | [log] [tgz] |
|---|---|---|
| author | Anton Blanchard <anton@linux.ibm.com> | Sat Jan 07 07:52:28 2023 +1100 |
| committer | Tim Edwards <tim@opencircuitdesign.com> | Sun Jan 08 13:01:04 2023 -0500 |
| tree | 76cc59d911f92af3b3cba969f0589387985f86ae | |
| parent | 327e268bdb7191fe07a28bd40eeac055bba9dffd [diff] |
update.sh takes one argument not two
diff --git a/scripts/update.sh b/scripts/update.sh index 41cdaad..52c9b04 100755 --- a/scripts/update.sh +++ b/scripts/update.sh
@@ -15,8 +15,8 @@ set -e if type "git" > /dev/null; then - echo "Pulling $1 into $2" - cd $2 + echo "Pulling $1" + cd $1 git pull else