Merrit / flutter_flatpak_example

An example of how to package a Flutter application as a Flatpak for distribution on Linux, using the default counter example app.
64 stars 8 forks source link

tar command is wrong #6

Closed sgehrman closed 1 year ago

sgehrman commented 1 year ago

tar -C build/linux/x64/release/bundle -cvf FlutterApp-Linux-Portable.tar.gz .

need to add an 'a' argument. The file ends in gz, but without that a, it will be a tar file.

Merrit commented 1 year ago

Right you are. Fixed - thanks for pointing it out!