mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +00:00
8 lines
53 B
Bash
Executable File
8 lines
53 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
test -d "tmp" && {
|
|
rm -Rf tmp
|
|
}
|