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.
2 parents 45c727f + d9d6bd2 commit 0cbf6abCopy full SHA for 0cbf6ab
Makefile
@@ -209,7 +209,7 @@ docs/lima-sequence-diagram.png: docs/images/lima-sequence-diagram.puml
209
install: uninstall
210
mkdir -p "$(DEST)"
211
# Use tar rather than cp, for better symlink handling
212
- ( cd _output && tar c * | tar Cxv "$(DEST)" )
+ ( cd _output && $(TAR) c * | $(TAR) -xv --no-same-owner -C "$(DEST)" )
213
if [ "$(shell uname -s )" != "Linux" -a ! -e "$(DEST)/bin/nerdctl" ]; then ln -sf nerdctl.lima "$(DEST)/bin/nerdctl"; fi
214
if [ "$(shell uname -s )" != "Linux" -a ! -e "$(DEST)/bin/apptainer" ]; then ln -sf apptainer.lima "$(DEST)/bin/apptainer"; fi
215
0 commit comments