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
bf73788e
Commit
bf73788e
authored
2 years ago
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
__epm_print_warning_for_nonalt_packages(): add separate warning for repacked packages
parent
a7668e87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
epm-sh-install
bin/epm-sh-install
+13
-2
No files found.
bin/epm-sh-install
View file @
bf73788e
...
...
@@ -114,9 +114,20 @@ __epm_print_warning_for_nonalt_packages()
local
i
for
i
in
$*
;
do
epm_status_thirdpart
"
$i
"
||
continue
if
epm_status_repacked
"
$i
"
;
then
warning
"%%% You are trying install package
$i
repacked from third-party software source. Use it at your own discretion. %%%"
continue
fi
warning
"%%% You are trying install package
$i
from third-party software source. Use it at your own discretion. %%%"
if
epm_status_thirdpart
"
$i
"
;
then
warning
"%%% You are trying install package
$i
from third-party software source. Use it at your own discretion. %%%"
continue
fi
if
!
epm_status_original
"
$i
"
;
then
warning
"%%% You are trying install package
$i
not from official
$DISTROVENDOR
/
$DISTROVERSION
repository. Use it at your own discretion. %%%"
continue
fi
done
}
...
...
This diff is collapsed.
Click to expand it.
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