This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
|
#!/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/*"
|