Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
eepm
Commits
2cfaddd5
Commit
2cfaddd5
authored
Dec 10, 2025
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm install: fix parse error, don't check url and pathes
parent
8792cb0e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
epm-install
bin/epm-install
+4
-4
No files found.
bin/epm-install
View file @
2cfaddd5
...
...
@@ -129,7 +129,7 @@ process_repo_arguments() {
local
repo_groups
declare
-A
repo_groups
for
arg
in
"
$@
"
;
do
repo
=
""
repo
=
"
.
"
name
=
"
$arg
"
case
"
$arg
"
in
*
/
*
)
...
...
@@ -140,7 +140,7 @@ process_repo_arguments() {
done
for
repo
in
"
${
!repo_groups[@]
}
"
;
do
if
[
-z
"
$repo
"
]
;
then
if
[
"
$repo
"
=
'.'
]
;
then
epm_install_names
${
repo_groups
[
$repo
]
}
else
load_helper epm-update
...
...
@@ -162,13 +162,13 @@ epm_install_names()
[
-z
"
$1
"
]
&&
return
# check some like nix: prefix, PPARGS for stop possible recursion. TODO
if
echo
"
$*
"
|
grep
-q
'
[a-z][a-z][a-z]*:'
&&
[
-z
"
$PPARGS
"
]
;
then
if
echo
"
$*
"
|
grep
-q
-E
'(^| )
[a-z][a-z][a-z]*:'
&&
[
-z
"
$PPARGS
"
]
;
then
process_package_arguments
"
$@
"
return
fi
# check some like repo/package, PPARGS for stop possible recursion. TODO
if
echo
"
$*
"
|
grep
-q
'[a-z][a-z
0-9]*/'
&&
[
-z
"
$PPARGS
"
]
;
then
if
echo
"
$*
"
|
grep
-q
-E
'(^| )[a-zA-Z][a-zA-Z
0-9]*/'
&&
[
-z
"
$PPARGS
"
]
;
then
process_repo_arguments
"
$@
"
return
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment