mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-05-23 15:01:28 -04:00
51c80db5be
* Removes build-time dependency on the `extracted` directory * Allows assets to be stored in non-versioned folders which makes for easier editing
10 lines
185 B
Bash
Executable File
10 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
size=$(stat --format="%s" $1)
|
|
|
|
test $size -gt 0 || exit 0
|
|
|
|
printf "0: 1173 %.6x" $size | xxd -r -g0
|
|
|
|
tools/gzip -c --no-name --best $1 | head --bytes=-8 | tail --bytes=+11
|