mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-01 11:34:17 +01:00
16 lines
223 B
Plaintext
16 lines
223 B
Plaintext
flag e +
|
|
|
|
if(! ~ $#* 1) {
|
|
echo 'usage: fetch-git.rc dir' >[1=2]
|
|
exit 2
|
|
}
|
|
|
|
cd $1
|
|
|
|
git submodule update --init --checkout src
|
|
if([ -d patch ]) {
|
|
patches=patch/*
|
|
git -C src am '--whitespace=nowarn' ../$patches
|
|
}
|
|
status=()
|