mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-27 05:54:02 +01:00
7 lines
127 B
Bash
7 lines
127 B
Bash
#!/bin/bash
|
|
(
|
|
cd $(dirname $(readlink -f ${0}))/../;
|
|
git submodule sync;
|
|
git submodule foreach git pull origin master;
|
|
)
|