Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Commits
150ca054
Commit
150ca054
authored
8 months ago
by
Dmitry Rodionov
Committed by
Georgy Moshkin
6 months ago
Browse files
Options
Downloads
Patches
Plain Diff
chore: use shlex in apply patches script to please gamayun
parent
c32a19e2
No related branches found
No related tags found
1 merge request
!1113
chore: use shlex in apply patches script to please gamayun
Pipeline
#48508
failed
6 months ago
Stage: test
Stage: stress-test
Stage: front-deploy
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/prepare_source_tree_for_stat_analysis.py
+2
-2
2 additions, 2 deletions
tools/prepare_source_tree_for_stat_analysis.py
with
2 additions
and
2 deletions
tools/prepare_source_tree_for_stat_analysis.py
+
2
−
2
View file @
150ca054
...
...
@@ -5,6 +5,7 @@ from contextlib import contextmanager
import
glob
import
os
from
pathlib
import
Path
import
shlex
import
subprocess
# nosec
import
sys
...
...
@@ -102,8 +103,7 @@ def apply_patches():
def
restore
():
subprocess
.
check_call
(
"
git submodule foreach --recursive git restore .
"
,
shell
=
True
,
shlex
.
split
(
"
git submodule foreach --recursive git restore .
"
)
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment