summarylogtreecommitdiffstats
path: root/ryujinx.install
blob: 7fbc3458bfb45dd2dce9d26b8b846bb0462dfd21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
pre_install() {
	if [ -d "/opt/ryujinx/Logs" ];
	then
		rm -rf /opt/ryujinx/Logs
	fi
}

pre_upgrade() {
	if [ -d "/opt/ryujinx/Logs" ];
	then
		rm -rf /opt/ryujinx/Logs
	fi
}

pre_remove() {
	if [ -d "/opt/ryujinx/Logs" ];
	then
		rm -rf /opt/ryujinx/Logs
	fi
}