Files
oasis-linux-mirror/scripts/fetch-git.rc
2016-06-27 23:54:20 -07:00

18 lines
234 B
Bash
Executable File

#!/bin/rc
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=()