Fix build/test-bpf command line handling if run as cargo subcommand

This commit is contained in:
Dmitri Makarov 2022-06-19 15:36:39 -07:00 committed by Dmitri Makarov
parent 3a648aad2b
commit f14a361854
2 changed files with 6 additions and 6 deletions

View File

@ -21,9 +21,9 @@ fn main() {
};
// When run as a cargo subcommand, the first program argument is the subcommand name.
// Remove it
if let Some(arg1) = args.get(1) {
if arg1 == "build-bpf" {
args.remove(1);
if let Some(arg0) = args.get(0) {
if arg0 == "build-bpf" {
args.remove(0);
}
}
print!("cargo-build-bpf child: {}", program.display());

View File

@ -27,9 +27,9 @@ fn main() {
};
// When run as a cargo subcommand, the first program argument is the subcommand name.
// Remove it
if let Some(arg1) = args.get(1) {
if arg1 == "test-bpf" {
args.remove(1);
if let Some(arg0) = args.get(0) {
if arg0 == "test-bpf" {
args.remove(0);
}
}
print!("cargo-test-bpf child: {}", program.display());