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.
 
 
 
 
 
MiniDexed/scripts/get-performances.sh

18 lines
322 B

#!/bin/bash
echo "Fetching performances..."
DEST="build/sdcard"
mkdir -p ${DEST}
rm -rf external/soundplantage
git clone https://github.com/Banana71/Soundplantage --depth 1 external/soundplantage > /dev/null 2>&1
cp -r \
external/soundplantage/performance \
external/soundplantage/*.pdf \
$DEST
echo " Done."