12 lines
378 B
Bash
Executable file
12 lines
378 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2020-present Shanti Gilbert (https://github.com/shantigilbert)
|
|
# Copyright (C) 2022 Fewtarius (https://github.com/fewtarius)
|
|
|
|
case "${1}" in
|
|
"retroarch")
|
|
rm -f /storage/.config/retroarch/retroarch.cfg
|
|
cp -rf /usr/config/retroarch/retroarch.cfg /storage/.config/retroarch/retroarch.cfg
|
|
;;
|
|
esac
|