mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 10:06:23 +00:00
9 lines
162 B
Text
9 lines
162 B
Text
|
#!/bin/sh
|
||
|
set -e
|
||
|
|
||
|
test -n "${CI_MERGE_REQUEST_DIFF_BASE_SHA}"
|
||
|
|
||
|
git diff --name-status ${CI_MERGE_REQUEST_DIFF_BASE_SHA}...rails \
|
||
|
| grep -v "^D" \
|
||
|
| cut -f 2
|