mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
bitbake: toaster: allow dots in user path names
The dot '.' character should be allowed in the user paths for local non-git layers, DL_DIR, and SSTATE_DIR. [YOCTO #10650] (Bitbake rev: ca9b9ffc250eb3ece5af3d64ff5febef69d555b0) Signed-off-by: David Reyna <David.Reyna@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
ecb828a68f
commit
2021e95bcd
@@ -418,7 +418,7 @@ function importLayerPageInit (ctx) {
|
||||
var input = $(this);
|
||||
var reBeginWithSlash = /^\//;
|
||||
var reCheckVariable = /^\$/;
|
||||
var re = /([ <>\\|":\.%\?\*]+)/;
|
||||
var re = /([ <>\\|":%\?\*]+)/;
|
||||
|
||||
var invalidDir = re.test(input.val());
|
||||
var invalidSlash = reBeginWithSlash.test(input.val());
|
||||
|
||||
Reference in New Issue
Block a user