We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc4682b commit f179309Copy full SHA for f179309
Makefile
@@ -85,7 +85,7 @@ install: installer-pkg
85
@if [ -z "$(SUDO)" ] ; then \
86
temp_dir=$$(mktemp -d) ; \
87
xar -xf $(PKG_PATH) -C $${temp_dir} ; \
88
- (cd $${temp_dir} && tar -xf Payload -C "$(DEST_DIR)") ; \
+ (cd $${temp_dir} && gunzip -c Payload | (cd "$(DEST_DIR)" && cpio -idm)) ; \
89
rm -rf $${temp_dir} ; \
90
else \
91
$(SUDO) installer -pkg $(PKG_PATH) -target / ; \
0 commit comments