mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-01-23 00:07:07 +03:00
28f703cc25
Rust is now required for building the bcachefs tool, and rust code is now fully integrated with the C codebase - meaning it is possible to call back and forth. The mount helper is now a subcommand, 'mount.bcachefs' is now a small shell wrapper that invokes 'bcachefs mount'. This will make it easier to start rewriting other subcommands in rust, and eventually the whole command line interface. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
5 lines
76 B
Bash
Executable File
5 lines
76 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SDIR="$(readlink -f "$0")"
|
|
exec "${SDIR%/*}/bcachefs" mount "$@"
|