appimage: add log message when downloading Python3.7 AppImage

This commit is contained in:
Mike Salvatore 2021-04-15 12:20:33 -04:00
parent 66c5d91266
commit f3439bb2c4
1 changed files with 2 additions and 0 deletions

View File

@ -105,6 +105,8 @@ setup_appdir() {
setup_python_37_appdir() { setup_python_37_appdir() {
PYTHON_APPIMAGE="python3.7.9_x86_64.AppImage" PYTHON_APPIMAGE="python3.7.9_x86_64.AppImage"
rm -rf "$APPDIR" || true rm -rf "$APPDIR" || true
log_message "downloading Python3.7 Appimage"
curl -L -o "$PYTHON_APPIMAGE" "$PYTHON_APPIMAGE_URL" curl -L -o "$PYTHON_APPIMAGE" "$PYTHON_APPIMAGE_URL"
chmod u+x "$PYTHON_APPIMAGE" chmod u+x "$PYTHON_APPIMAGE"