File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 2024-08-20
4+ ### Fixed
5+ - Fix unquoting of variables (e.g. ` ALL_TEX_LIVE_DOCKER_IMAGES ` )
6+
37## 2024-08-13
48### Added
59- Updated default [ ` version ` ] ( https://github.com/overleaf/toolkit/blob/master/lib/config-seed/version ) to ` 5.1.1 ` .
Original file line number Diff line number Diff line change @@ -180,11 +180,11 @@ function check_sharelatex_env_vars() {
180180function read_variable() {
181181 local name=$1
182182 grep -E " ^$name =" " $TOOLKIT_ROOT /config/variables.env" \
183- | sed -r " s/^$name =([\" ']* )(.+)\1* \$ /\2/"
183+ | sed -r " s/^$name =([\" ']? )(.+)\1\$ /\2/"
184184}
185185
186186function read_configuration() {
187187 local name=$1
188188 grep -E " ^$name =" " $TOOLKIT_ROOT /config/overleaf.rc" \
189- | sed -r " s/^$name =([\" ']* )(.+)\1* \$ /\2/"
189+ | sed -r " s/^$name =([\" ']? )(.+)\1\$ /\2/"
190190}
You can’t perform that action at this time.
0 commit comments