mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-25 06:18:24 -05:00
14 lines
251 B
Bash
14 lines
251 B
Bash
#!/bin/bash -ex
|
|
|
|
BRANCH=`echo ${GITHUB_REF##*/}`
|
|
|
|
title=$(cat /yuzu/readme.md | grep 'early-access [[:digit:]]*' | cut -c 14-17)
|
|
|
|
|
|
yuzupatch=( $(ls -d patches/* ) )
|
|
for i in "${yuzupatch[@]}"; do patch -p1 < "$i"; done
|
|
|
|
mkdir build && cd build
|
|
|
|
ls .
|