From ac228017faec36cc84c775551b2c361f35cd933e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20Ku=C5=9Bmierczyk?= Date: Mon, 27 Dec 2021 11:16:58 +0100 Subject: [PATCH] Correct syntax error in the README.md example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 172f0b1..0692732 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Python plugin for linuxdeploy. Sets up miniconda inside an AppDir, and installs ```bash # get linuxdeploy and linuxdeploy-plugin-conda (see below for more information) # configure environment variables which control the plugin's behavior -> export CONDA_CHANNELS=mychannel;myotherchannel CONDA_PACKAGES=mypackage;myotherpackage +> export CONDA_CHANNELS="mychannel;myotherchannel" CONDA_PACKAGES="mypackage;myotherpackage" # call through linuxdeploy > ./linuxdeploy-x86_64.AppImage --appdir AppDir --plugin conda --output appimage --icon mypackage.png --desktop-file mypackage.desktop ```