mirror of
https://git.h3cjp.net/H3cJP/citra.git
synced 2024-11-23 22:23:11 +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/*"
|