From: Tiv0w Date: Fri, 20 May 2022 12:02:43 +0000 (+0200) Subject: Remove quotes escaping for JULIA_DEPOT_PATH X-Git-Tag: v0.2.0.0~37^2 X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/xdg-ninja.git/commitdiff_plain/5cd4c5b311062d9c772feb2ae17b82949c7a8160 Remove quotes escaping for JULIA_DEPOT_PATH It now can be copied verbatim; following the recommendation at: https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_DEPOT_PATH --- diff --git a/programs/julia.json b/programs/julia.json index caffd0a..833ce3f 100644 --- a/programs/julia.json +++ b/programs/julia.json @@ -4,7 +4,7 @@ { "path": "$HOME/.julia", "movable": true, - "help": "Export the following environment variables:\n\n```bash\nexport JULIA_DEPOT_PATH=\\\"$XDG_DATA_HOME/julia:$JULIA_DEPOT_PATH\\\"\n```\n_Note: the trailing **:$JULIA_DEPOT_PATH** is necessary._\n" + "help": "Export the following environment variables:\n\n```bash\nexport JULIA_DEPOT_PATH=\"$XDG_DATA_HOME/julia:$JULIA_DEPOT_PATH\"\n```\n_Note: the trailing **:$JULIA_DEPOT_PATH** is necessary._\n" } ] }