12 lines
392 B
Text
12 lines
392 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
# Copyright (C) 2022-present travis134
|
||
|
|
||
|
#If doomscan does not exist copy doomscan folder to roms/doom
|
||
|
if [ ! -e "/storage/roms/doom/doomscan" ]; then
|
||
|
cp -r /usr/share/doomscan /storage/roms/doom
|
||
|
chmod +x /storage/roms/doom/doomscan -R
|
||
|
mv "/storage/roms/doom/doomscan/_Scan Doom Games.sh" "/storage/roms/doom/_Scan Doom Games.sh"
|
||
|
fi
|