8 lines
91 B
Bash
8 lines
91 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Check for Submodule Updates
|
|
git submodule init
|
|
git submodule update
|