2022-02-05 14:23:32 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
|
|
|
PICO_DIR="/storage/roms/pico-8"
|
|
|
|
if [ ! -d "${PICO_DIR}" ]
|
|
|
|
then
|
|
|
|
mkdir "${PICO_DIR}"
|
|
|
|
fi
|
2022-04-06 01:56:58 +00:00
|
|
|
|
|
|
|
cp -f "/usr/bin/start_pico8.sh" "${PICO_DIR}/Start Pico-8.sh"
|
2022-02-05 14:23:32 +00:00
|
|
|
|