colourpicker

Simple Colour Picker written in C
git clone anongit@rnpnr.xyz:colourpicker.git
Log | Files | Refs | Feed | Submodules | README | LICENSE

Commit: f52e0fb62cd5793d6c92b79f03b3d52e0b1d7a1c
Parent: cf1f7a3db6e99e1f3ea05ddeffa9e8924cfe17e7
Author: Randy Palamar
Date:   Mon,  5 Aug 2024 15:19:33 -0600

build.sh: replace git am with git apply

This is more friendly to CI

Diffstat:
Mbuild.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.sh b/build.sh @@ -18,7 +18,7 @@ if [ "$system_raylib" ]; then else if [ ! -f external/lib/libraylib.a ]; then git submodule update --init --checkout --depth=1 external/raylib - git -C external/raylib am --keep-non-patch --whitespace=nowarn "$PWD"/external/*.patch + git -C external/raylib apply --whitespace=nowarn "$PWD"/external/*.patch cmake --install-prefix="${PWD}/external" \ -G "Ninja" -B external/raylib/build -S external/raylib \ -D CMAKE_INSTALL_LIBDIR=lib -D CMAKE_BUILD_TYPE="Release" \