mirror of
https://github.com/gbdev/rgbds.git
synced 2026-05-14 22:01:43 +00:00
Suppress status messages when fetching test deps
Let's avoid status message spam.
This commit is contained in:
@@ -93,10 +93,10 @@ case "$actionname" in
|
|||||||
|
|
||||||
action() { # domain owner repo commit
|
action() { # domain owner repo commit
|
||||||
if [ ! -d "$3" ]; then
|
if [ ! -d "$3" ]; then
|
||||||
git clone "https://$1/$2/$3.git" --revision="$4" --depth=1 --recursive --shallow-submodules
|
git clone "https://$1/$2/$3.git" --revision="$4" --depth=1 --recursive --shallow-submodules --config advice.detachedHead=false
|
||||||
fi
|
fi
|
||||||
pushd "$3"
|
pushd "$3"
|
||||||
git checkout -f "$4"
|
git checkout --force --detach "$4" --
|
||||||
if [ -f "../patches/$3.patch" ]; then
|
if [ -f "../patches/$3.patch" ]; then
|
||||||
git apply --ignore-whitespace "../patches/$3.patch"
|
git apply --ignore-whitespace "../patches/$3.patch"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user