From 5c4206c30eb38a790518b9457a687642057ad4aa Mon Sep 17 00:00:00 2001 From: Levi Date: Thu, 26 Oct 2023 17:24:12 +0800 Subject: [PATCH 1/2] Update flutter.rst fix cp command --- source/examples/flutter.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/examples/flutter.rst b/source/examples/flutter.rst index ccdb52c..5ae394b 100644 --- a/source/examples/flutter.rst +++ b/source/examples/flutter.rst @@ -39,7 +39,7 @@ available in the beta channel therefore we need to enable it. Once it's enable w Our application binaries should be somewhere inside the build dir, usually `build/linux/x64/release/bundle`. We will copy this this folder to our work dir as AppDir: -`cp build/linux/x64/release/bundle $PWD/AppDir` +`cp -r build/linux/x64/release/bundle $PWD/AppDir` From 4c8e695c49972fde1e5463feaa256214bdb1e211 Mon Sep 17 00:00:00 2001 From: Levi Date: Fri, 27 Oct 2023 09:32:50 +0800 Subject: [PATCH 2/2] Update flutter.rst --- source/examples/flutter.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/examples/flutter.rst b/source/examples/flutter.rst index 5ae394b..2581f6f 100644 --- a/source/examples/flutter.rst +++ b/source/examples/flutter.rst @@ -39,7 +39,7 @@ available in the beta channel therefore we need to enable it. Once it's enable w Our application binaries should be somewhere inside the build dir, usually `build/linux/x64/release/bundle`. We will copy this this folder to our work dir as AppDir: -`cp -r build/linux/x64/release/bundle $PWD/AppDir` +`cp -r build/linux/x64/release/bundle/* $PWD/AppDir`