You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
538 B
21 lines
538 B
#!/usr/bin/with-contenv bash
|
|
|
|
# Create scripts directory
|
|
if [ ! -d "/config/scripts" ]; then
|
|
mkdir "/config/scripts"
|
|
fi
|
|
|
|
# Remove existing LAD start script
|
|
if [ -f "/config/scripts/AudioPostProcessing.bash" ]; then
|
|
rm "/config/scripts/AudioPostProcessing.bash"
|
|
sleep 0.1
|
|
fi
|
|
|
|
# Copy AudioPostProcessing into scripts directory
|
|
if [ ! -f "/config/scripts/AudioPostProcessing.bash" ]; then
|
|
cp "/scripts/AudioPostProcessing.bash" "/config/scripts/AudioPostProcessing.bash"
|
|
chmod 0777 "/config/scripts/AudioPostProcessing.bash"
|
|
fi
|
|
|
|
exit 0
|