Merge pull request #8934 from ajnavarro/fix/install-on-mac-m1-monterey
(cherry picked from commit ae15e188949ca94afd80ef9c8f9e9af0fbb7cc0a)
Antonio Navarro Perez committed
May 6, 2022 at 17:13 UTC
51fc526a543f46cac240fa01f4c8f6752343a51b
1 file changed
+1
cmd/ipfs/dist/install.sh
+1
@@ -15,6 +15,7 @@ is_write_perm_missing=""
15
for raw in $binpaths; do
16
# Expand the $HOME variable.
17
binpath=$(eval echo "$raw")
18
+ mkdir -p "$binpath"
19
if mv "$bin" "$binpath/ipfs" ; then
20
echo "Moved $bin to $binpath"
21
exit 0