12 lines
306 B
Bash
Executable file
12 lines
306 B
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
. /etc/profile
|
|
|
|
if [ ! -L "/storage/.emulationstation" ] && \
|
|
[ -d /storage/.config/emulationstation ]
|
|
then
|
|
ln -sf /storage/.config/emulationstation /storage/.emulationstation
|
|
fi
|
|
|