avi files are no longer audio.

This commit is contained in:
Nathaniel Landau
2015-05-24 21:28:29 -04:00
parent a67007d272
commit 2148349c16
2 changed files with 10 additions and 10 deletions

View File

@@ -331,12 +331,12 @@ function help () {
# The script will fail if dependencies are not installed. For Mac users,
# most dependencies can be installed automatically using the package
# manager 'Homebrew'.
# Usage in script: $ bashDependencies=(package1 package2)
# Usage in script: $ homebrewDependencies=(package1 package2)
# -----------------------------------
function checkDependencies() {
# Check bashDependencies
for dependency in "${bashDependencies[@]}"; do
for dependency in "${homebrewDependencies[@]}"; do
if type_not_exists "${dependency}"; then
# Attempt to install necessary packages via Homebrew if invoked on a Mac
if [[ "${OSTYPE}" =~ ^darwin ]]; then