This change introduces the "Terminal Isolation Matrix", a new output format that creates a runc-compatible container bundle. This allows for the collected files to be run in an isolated environment. A --format flag has been added to all collect commands to support this new format.
8 lines
433 B
Bash
Executable file
8 lines
433 B
Bash
Executable file
#!/bin/bash
|
|
# Example of using the 'borg collect' command with the '--format matrix' flag.
|
|
|
|
# This script clones the specified Git repository and saves it as a .matrix file.
|
|
# The main executable 'borg' is built from the project's root.
|
|
# Make sure you have built the project by running 'go build -o borg main.go' in the root directory.
|
|
|
|
./borg collect github repo https://github.com/Snider/Borg --output borg.matrix --format matrix
|