6 lines
298 B
Bash
Executable File
6 lines
298 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Tarball all the images in their respective folders, so this can literally be unpacked into a standard arch folder and used.
|
|
tar -c -f retro.tar `find | grep \\\\.rtro\\\\. | cut -d / -f 2,3,4,5,6,7,8` image_info.patch Makefile.server.lib.am.patch TODO.rtro README.rtro ChangeLog.rtro
|
|
|