11 lines
170 B
Bash
Executable File
11 lines
170 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ ! -d lists ]; then
|
|
mkdir lists
|
|
cd lists
|
|
parallel -a ../awesome-awesomeness/latest -j1 git submodule add --force {}
|
|
fi
|
|
|
|
git submodule update --remote
|
|
|