distribution/packages/jelos/sources/autostart/common/010-pico8
fewtarius 9e72309447
* Fix long standing issue with busybox and bash.
* Move retroarch bits to the retroarch package.
* Add an upgrade script to autostart that executes after upgrades.
2022-03-16 18:03:28 -04:00

11 lines
266 B
Bash
Executable file

#!/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
cp -f "/usr/bin/pico-8.sh" "${PICO_DIR}/Start Pico-8.sh"