Skip to content
Snippets Groups Projects
Commit 231f3f39 authored by Emuis's avatar Emuis
Browse files

BuildAndIPFSify.sh: IPFS doesn't like spaces in it's hashes

parent 929df15d
No related branches found
No related tags found
1 merge request!1333BuildAndIPFSify.sh: IPFS doesn't like spaces in it's hashes
......@@ -22,7 +22,7 @@ fi
# If we've done this before then unpin the previous hash so IPFS can GC it if it needs to
if [ -r ../IPFS_hash.txt ]; then
ipfs pin rm --recursive=true "$(cut -d : -f 2 ../IPFS_hash.txt)"
ipfs pin rm --recursive=true "$(cut -d : -f 2 ../IPFS_hash.txt | tr -d ' ')"
fi
./compile || exit 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment