Skip to content

Commit

Permalink
fixup! [wip][feature] Add support for FAT images via PyFatFS
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Oct 6, 2024
1 parent e7eab17 commit ecd2b30
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions AppImage/build-ratarmount-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ function installAppImagePythonPackages()
# "$APP_PYTHON_BIN" -I -m pip install --no-cache-dir requests aiohttp sshfs smbprotocol pygit2<1.15 fsspec
# This bloats the AppImage to 38.5 MB :/. Extracts to 121.0 MB
# "$APP_PYTHON_BIN" -I -m pip install --no-cache-dir s3fs gcsfs adlfs dropboxdrivefs

# Need to install it manually because it is disabled for Python >=3.12 because of:
# https://github.com/nathanhi/pyfatfs/issues/41
# And we need to apply a patch for that.
"$APP_PYTHON_BIN" -I -m pip install --no-cache-dir pyfatfs
patch -u "$( find "$APP_DIR" -type f -name FatIO.py )" pyfatfs-issue-41.patch
}

function installAppImageSystemLibraries()
Expand Down

0 comments on commit ecd2b30

Please sign in to comment.