7 lines
90 B
Plaintext
7 lines
90 B
Plaintext
|
#!/bin/bash
|
||
|
#
|
||
|
# update submodules after checkout
|
||
|
|
||
|
git submodule init
|
||
|
git submodule update
|