summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tools/minirun/apply_patches.sh
blob: ca2e4f445fb2382dc6e83ad15a3c36fc4893dd46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
set -eu

errexit() {
	    echo $1
	        exit 1
	}

echo patching
cd ../../../../
patch -p0 < yql/essentials/tools/minirun/patches/01_no_icu.patch || errexit "Source patching failed"
echo done