5 lines
99 B
Bash
5 lines
99 B
Bash
|
#!/bin/bash
|
||
|
git submodule update --remote --merge
|
||
|
git add *
|
||
|
git commit -m "updated theme"
|
||
|
git push
|