Commit 5ce413d7 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play: don't print chmod result to stdout

parent 1d82a8ef
......@@ -356,8 +356,8 @@ if [ "$1" = "--ipfs" ] ; then
if [ -d "$(dirname "$epm_ipfs_db")" ] ; then
export EGET_IPFS_DB="$eget_ipfs_db"
if [ ! -r "$EGET_IPFS_DB" ] ; then
sudorun touch "$EGET_IPFS_DB"
sudorun chmod -v a+rw "$EGET_IPFS_DB"
sudorun touch "$EGET_IPFS_DB" >&2
sudorun chmod -v a+rw "$EGET_IPFS_DB" >&2
fi
else
warning "ipfs db dir $eget_ipfs_db is not exists, skipping --ipfs"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment