mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2025-02-02 22:14:29 +01:00
dd4d2f6aa0
Closes #1896
8 lines
331 B
Bash
Executable File
Vendored
8 lines
331 B
Bash
Executable File
Vendored
set -e
|
|
|
|
dir=$(go list -f '{{.Dir}}' github.com/go-gl/glfw/v3.3/glfw)/glfw
|
|
ls ./deps/mingw | xargs -I '{}' cp $dir/deps/mingw/'{}' ./deps/mingw/'{}'
|
|
ls ./include/GLFW | xargs -I '{}' cp $dir/include/GLFW/'{}' ./include/GLFW/'{}'
|
|
ls ./src | xargs -I '{}' cp $dir/src/'{}' ./src/'{}'
|
|
echo 'Apply the change based on README.md later.'
|