Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
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
etersoft
eget
Commits
d5411856
Commit
d5411856
authored
Jan 08, 2026
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
eget fix: quote variables in dirname/basename calls
parent
9a83bd1b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
eget
eget
+3
-3
No files found.
eget
View file @
d5411856
...
@@ -740,10 +740,10 @@ check_ipfs_gateway()
...
@@ -740,10 +740,10 @@ check_ipfs_gateway()
return
return
fi
fi
if
docmd eget
--
check-site
"
$(
dirname
$ipfs_gateway
)
"
;
then
if
docmd eget
--
check-site
"
$(
dirname
"
$ipfs_gateway
"
)
"
;
then
info
"IPFS gateway
$ipfs_gateway
is accessible, but can't return shared
$ipfs_checkQm
"
info
"IPFS gateway
$ipfs_gateway
is accessible, but can't return shared
$ipfs_checkQm
"
else
else
info
"IPFS gateway
$(
dirname
$ipfs_gateway
)
is not accessible"
info
"IPFS gateway
$(
dirname
"
$ipfs_gateway
"
)
is not accessible"
fi
fi
return
1
return
1
...
@@ -905,7 +905,7 @@ ipfs_cat()
...
@@ -905,7 +905,7 @@ 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_PRETTY_CMD
=
"~Brave-Browser/
$(
basename
"
$IPFS_CMD
"
)
"
IPFS_API
=
"
$ipfs_api_brave
"
IPFS_API
=
"
$ipfs_api_brave
"
ipfs_api_access
||
fatal
"Can't access to Brave IPFS API (Brave browser is not running and IPFS is not activated?)"
ipfs_api_access
||
fatal
"Can't access to Brave IPFS API (Brave browser is not running and IPFS is not activated?)"
info
"Will use
$IPFS_PRETTY_CMD
--api
$IPFS_API
"
info
"Will use
$IPFS_PRETTY_CMD
--api
$IPFS_API
"
...
...
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