kopia: fix broken permissions on Darwin
Without the patched line, installation on Darwin fails with: ```mv: cannot move 'tmp-vendor' to 'vendor': Permission denied```
This commit is contained in:
parent
a266e6c7d5
commit
604ccef15b
|
@ -27,6 +27,7 @@ buildGoModule rec {
|
|||
# make 'vendor' writable
|
||||
cp -L -r vendor tmp-vendor
|
||||
rm -rf vendor
|
||||
chmod -R u+w tmp-vendor
|
||||
mv tmp-vendor vendor
|
||||
|
||||
# speakeasy hardcodes /bin/stty https://github.com/bgentry/speakeasy/issues/22
|
||||
|
|
Loading…
Reference in New Issue