mirror of
https://github.com/flibitijibibo/RogueLegacy1.git
synced 2026-06-02 00:57:01 -07:00
11 lines
175 B
Bash
Executable file
11 lines
175 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "`dirname "$0"`"
|
|
|
|
FILES=`ls | grep '\.fx$'`
|
|
for f in $FILES
|
|
do
|
|
WINEDEBUG=fixme-all,err-all wine fxc.exe /T fx_2_0 $f /Fo "`basename $f .fx`.fxb"
|
|
done
|