7 lines
252 B
Bash
Executable file
7 lines
252 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# $@: list of file basenames for .exr files
|
|
# Note: due to how Godot finds paths, this works best if cwd is this directory
|
|
|
|
|
|
BASENAMES=$(find -name 'VA_*.mdd' | sed s@\./@@ | sed s@\.mdd@@ | tr "\n" " ")
|
|
./pack_res.gd ++ $BASENAMES
|