File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2024-08-20
4
+ ### Fixed
5
+ - Fix unquoting of variables (e.g. ` ALL_TEX_LIVE_DOCKER_IMAGES ` )
6
+
3
7
## 2024-08-13
4
8
### Added
5
9
- 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() {
180
180
function read_variable() {
181
181
local name=$1
182
182
grep -E " ^$name =" " $TOOLKIT_ROOT /config/variables.env" \
183
- | sed -r " s/^$name =([\" ']* )(.+)\1* \$ /\2/"
183
+ | sed -r " s/^$name =([\" ']? )(.+)\1\$ /\2/"
184
184
}
185
185
186
186
function read_configuration() {
187
187
local name=$1
188
188
grep -E " ^$name =" " $TOOLKIT_ROOT /config/overleaf.rc" \
189
- | sed -r " s/^$name =([\" ']* )(.+)\1* \$ /\2/"
189
+ | sed -r " s/^$name =([\" ']? )(.+)\1\$ /\2/"
190
190
}
You can’t perform that action at this time.
0 commit comments