mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 17:04:55 +00:00
8 lines
231 B
Bash
Executable File
8 lines
231 B
Bash
Executable File
#!/bin/bash -ex
|
|
cd build/install
|
|
for f in hecl metaforce-gui metaforce visigen; do
|
|
objcopy --only-keep-debug $f $f.dbg
|
|
objcopy --strip-debug --add-gnu-debuglink=$f.dbg $f
|
|
done
|
|
tar acfv "$GITHUB_WORKSPACE"/debug.tar.xz -- *.dbg
|