mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 06:54:24 -04:00
dfe232533f
* Fix /bin/bash -> /usr/bin/env bash * Add curl to docker container
12 lines
354 B
Bash
Executable File
12 lines
354 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
PATCH=$(git diff | base64 -w 0)
|
|
if [ -n "$PATCH" ]; then
|
|
echo "Jenkins made some fixes to your PR. To apply these changes to your working directory,"
|
|
echo "copy and run the following command (triple-click to select the entire line):"
|
|
echo
|
|
echo "echo -n $PATCH | base64 -d | git apply -"
|
|
echo
|
|
fi
|