Remove -O option from curl invocation to ensure file is named consistently in test_package.bats

This commit is contained in:
Bryan 2016-01-13 14:25:22 -08:00
parent bfde94528c
commit 8fb2537e87

View file

@ -38,11 +38,11 @@ purge_package(){
}
install_last_version(){
$SUDO_PREFIX dpkg -i last_version.deb
$SUDO_PREFIX dpkg -i "$DIR/last_version.deb"
}
download_and_install_last_version(){
curl -O "$LAST_VERSION_URL" -o last_version.deb
curl "$LAST_VERSION_URL" -o "$DIR/last_version.deb"
install_last_version
}