Skip to content

Commit

Permalink
Update install.sh
Browse files Browse the repository at this point in the history
Google Drive started requiring an inline confirm on one of the files. Updated technique
  • Loading branch information
sunshine-cid committed May 2, 2023
1 parent 2e8fdd2 commit 8a31d6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.sh
Expand Up @@ -68,11 +68,11 @@ echo "At least one sound file exists. Skipping downloading..."
else
echo "Downloading sounds..."
#hardcore.tar.gz
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=17utRjUQqxOFkhayf1sXZh-glHseM9hkY' -O hardcore.tar.gz
wget --no-check-certificate 'https://docs.google.com/uc?export=download&confirm=t&id=17utRjUQqxOFkhayf1sXZh-glHseM9hkY' -O hardcore.tar.gz
#silence.tar.gz
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=1Cj3GPME60wuc09MjoSRDZ7U7-jAp590t' -O silence.tar.gz
wget --no-check-certificate 'https://docs.google.com/uc?export=download&confirm=t&id=1Cj3GPME60wuc09MjoSRDZ7U7-jAp590t' -O silence.tar.gz
#z_listening.tar.gz
wget --no-check-certificate 'https://docs.google.com/uc?export=download&id=11xxkFh0JgG1EOiqHwyAQ0AFWD7mNa7sF' -O z_listening.tar.gz
wget --no-check-certificate 'https://docs.google.com/uc?export=download&confirm=t&id=11xxkFh0JgG1EOiqHwyAQ0AFWD7mNa7sF' -O z_listening.tar.gz
fi
echo "Extracting sounds..."
for filename in ./*.tar.gz; do sudo tar -xjvf $filename -C /home/$username/sounds/; done
Expand Down

0 comments on commit 8a31d6d

Please sign in to comment.