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
0
Merge Requests
0
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
a2dbbf94
Commit
a2dbbf94
authored
Jul 22, 2012
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm: fix commands, add missed checkpkg
parent
c3183ab1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
epm
bin/epm
+8
-2
epm-checkpkg
bin/epm-checkpkg
+2
-0
No files found.
bin/epm
View file @
a2dbbf94
...
...
@@ -136,8 +136,14 @@ for opt in "$@" ; do
-ql
|
filelist
)
# HELPCMD: print package file list
epm_cmd
=
filelist
;;
check|simulate
)
# HELPCMD: simulate install (check requires)
epm_cmd
=
$opt
check
)
# HELPCMD: check local package base integrity
epm_cmd
=
check
;;
checkpkg|integrity
)
# HELPCMD: check package integrity
epm_cmd
=
checkpkg
;;
simulate
)
# HELPCMD: simulate install (check requires)
epm_cmd
=
simulate
;;
*
)
if
[
-f
"
$opt
"
]
;
then
...
...
bin/epm-checkpkg
View file @
a2dbbf94
...
...
@@ -81,6 +81,8 @@ check_pkg_integrity()
epm_checkpkg
()
{
[
-n
"
$pkg_files
"
]
||
fatal
"Run without names"
for
i
in
$pkg_files
;
do
check_pkg_integrity
$i
||
fatal
"Broken package
$i
"
done
...
...
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