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
f870dda5
Commit
f870dda5
authored
Sep 20, 2023
by
Mikhail Tergoev
Committed by
Vitaly Lipatov
Sep 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed 7z working with spaces in names
parent
2f8e0cc1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
tools_erc
bin/tools_erc
+6
-6
No files found.
bin/tools_erc
View file @
f870dda5
...
...
@@ -61,11 +61,11 @@ create_archive()
case
"
$type
"
in
tar
)
#docmd $HAVE_7Z a -l $arc "$@"
docmd
tar
cvf
$arc
"
$@
"
docmd
tar
cvf
"
$arc
"
"
$@
"
;;
*
)
# TODO: fix symlinks support
docmd
$HAVE_7Z
a
-l
$arc
"
$@
"
docmd
$HAVE_7Z
a
-l
"
$arc
"
"
$@
"
#fatal "Not yet supported creating of $type archives"
;;
esac
...
...
@@ -93,10 +93,10 @@ extract_archive()
# TODO: check if there is only one file?
# use subdir if there is no subdir in archive
TSUBDIR
=
"
$(
basename
"
$arc
"
.
$(
echo
$type
|
sed
-e
's|^tar\.||'
)
)
"
docmd
$HAVE_7Z
x
-so
$arc
| docmd
$HAVE_7Z
x
-si
-ttar
docmd
$HAVE_7Z
x
-so
"
$arc
"
| docmd
$HAVE_7Z
x
-si
-ttar
;;
*
)
docmd
$HAVE_7Z
x
$arc
"
$@
"
docmd
$HAVE_7Z
x
"
$arc
"
"
$@
"
#fatal "Not yet supported extracting of $type archives"
;;
esac
...
...
@@ -130,7 +130,7 @@ list_archive()
local type
=
"
$(
get_archive_type
"
$arc
"
)
"
case
"
$type
"
in
*
)
docmd
$HAVE_7Z
l
$arc
"
$@
"
docmd
$HAVE_7Z
l
"
$arc
"
"
$@
"
#fatal "Not yet supported listing of $type archives"
;;
esac
...
...
@@ -156,7 +156,7 @@ test_archive()
local type
=
"
$(
get_archive_type
"
$arc
"
)
"
case
"
$type
"
in
*
)
docmd
$HAVE_7Z
t
$arc
"
$@
"
docmd
$HAVE_7Z
t
"
$arc
"
"
$@
"
#fatal "Not yet supported test of $type archives"
;;
esac
...
...
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