Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
eget
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
Ivan Ivlev
eget
Commits
c98bb2f1
Commit
c98bb2f1
authored
1 year ago
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eget: pretty output for Brave's ipfs command
parent
31adbd82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
eget
eget
+10
-4
No files found.
eget
View file @
c98bb2f1
...
@@ -560,11 +560,13 @@ ipfs_cat()
...
@@ -560,11 +560,13 @@ ipfs_cat()
elif
[
"
$ipfs_mode
"
=
"brave"
]
;
then
elif
[
"
$ipfs_mode
"
=
"brave"
]
;
then
IPFS_CMD
=
"
$(
get_ipfs_brave
)
"
||
fatal
"Can't find ipfs command in Brave"
IPFS_CMD
=
"
$(
get_ipfs_brave
)
"
||
fatal
"Can't find ipfs command in Brave"
IPFS_PRETTY_CMD
=
"~Brave-Browser/
$(
basename
$IPFS_CMD
)
"
IPFS_API
=
"
$ipfs_api_brave
"
IPFS_API
=
"
$ipfs_api_brave
"
ipfs_access
||
fatal
"Can't access to Brave IPFS API (Brave browser is not running and IPFS is not activated?)"
ipfs_access
||
fatal
"Can't access to Brave IPFS API (Brave browser is not running and IPFS is not activated?)"
elif
[
"
$ipfs_mode
"
=
"local"
]
;
then
elif
[
"
$ipfs_mode
"
=
"local"
]
;
then
IPFS_CMD
=
"
$(
print_command_path ipfs
)
"
||
fatal
"Can't find ipfs command"
IPFS_CMD
=
"
$(
print_command_path ipfs
)
"
||
fatal
"Can't find ipfs command"
IPFS_PRETTY_CMD
=
"
$IPFS_CMD
"
IPFS_API
=
"
$ipfs_api_local
"
IPFS_API
=
"
$ipfs_api_local
"
ipfs_access
||
fatal
"Can't access to IPFS API (ipfs daemon is not running?)"
ipfs_access
||
fatal
"Can't access to IPFS API (ipfs daemon is not running?)"
...
@@ -602,22 +604,26 @@ ipfs_get()
...
@@ -602,22 +604,26 @@ ipfs_get()
{
{
[
-n
"
$IPFS_CMD
"
]
||
fatal
"ipfs api is not usable"
[
-n
"
$IPFS_CMD
"
]
||
fatal
"ipfs api is not usable"
if
[
-n
"
$2
"
]
;
then
if
[
-n
"
$2
"
]
;
then
docmd
$IPFS_CMD
--api
$IPFS_API
get
-o
"
$2
"
"
$1
"
showcmd
$IPFS_PRETTY_CMD
--api
$IPFS_API
get
-o
"
$2
"
"
$1
"
$IPFS_CMD
--api
$IPFS_API
get
-o
"
$2
"
"
$1
"
else
else
docmd
$IPFS_CMD
--api
$IPFS_API
get
"
$1
"
showcmd
$IPFS_PRETTY_CMD
--api
$IPFS_API
get
"
$1
"
$IPFS_CMD
--api
$IPFS_API
get
"
$1
"
fi
fi
}
}
ipfs_put
()
ipfs_put
()
{
{
[
-n
"
$IPFS_CMD
"
]
||
fatal
"ipfs api is not usable"
[
-n
"
$IPFS_CMD
"
]
||
fatal
"ipfs api is not usable"
docmd
$IPFS_CMD
--api
$IPFS_API
add
"
$@
"
showcmd
$IPFS_PRETTY_CMD
--api
$IPFS_API
add
"
$@
"
$IPFS_CMD
--api
$IPFS_API
add
"
$@
"
}
}
ipfs_cat
()
ipfs_cat
()
{
{
[
-n
"
$IPFS_CMD
"
]
||
fatal
"ipfs api is not usable"
[
-n
"
$IPFS_CMD
"
]
||
fatal
"ipfs api is not usable"
docmd
$IPFS_CMD
--api
$IPFS_API
cat
"
$1
"
showcmd
$IPFS_PRETTY_CMD
--api
$IPFS_API
cat
"
$1
"
$IPFS_CMD
--api
$IPFS_API
cat
"
$1
"
}
}
fi
fi
...
...
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