Browse Source

fix downloading submodules

pull/1/head
Marek Piasecki 6 years ago
parent
commit
a5523bfce1
  1. 2
      README.md
  2. 2
      pro

2
README.md

@ -22,7 +22,7 @@ git push -u origin master
Next, tell git to download `pro-framework`:
```sh
git pull --recurse-submodules
git submodule update --init --recursive
./pro update
```

2
pro

@ -1,6 +1,6 @@
#!/bin/bash
if [ "$1" == 'update' -o "$1" == 'u' ]; then
git submodule update --recursive --remote
git pull --recurse-submodules
else
./framework/tools/containers/docker/start.sh $@
fi

Loading…
Cancel
Save