mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-26 22:30:58 +00:00
312b65d5e3
* floats * obj_lightblock externs * Couple more floats * slime floats * undefined_syms * Move some tools to the tools folder * format * Update src/overlays/actors/ovl_Bg_Dblue_Waterfall/z_bg_dblue_waterfall.c Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com> --------- Co-authored-by: Anghelo Carvajal <angheloalf95@gmail.com>
12 lines
179 B
Bash
Executable File
12 lines
179 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
var="$1"
|
|
if [ ! -n "$var" ]
|
|
then
|
|
var=dos2unix
|
|
fi
|
|
|
|
find src -type f -print0 | xargs -0 $var
|
|
find include -type f -print0 | xargs -0 $var
|
|
$var checksum.md5
|