mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-15 17:20:06 +00:00
10 lines
248 B
Bash
10 lines
248 B
Bash
|
#!/bin/bash -ex
|
||
|
|
||
|
CITRA_SRC_DIR="/citra"
|
||
|
REPO_DIR="$CITRA_SRC_DIR/repo"
|
||
|
|
||
|
# When the script finishes, unmount the repository and delete sensitive files,
|
||
|
# regardless of whether the build passes or fails
|
||
|
umount "$REPO_DIR"
|
||
|
rm -rf "$REPO_DIR" "/tmp/*"
|