Fix build/test-bpf command line handling if run as cargo subcommand
This commit is contained in:
parent
3a648aad2b
commit
f14a361854
|
@ -21,9 +21,9 @@ fn main() {
|
||||||
};
|
};
|
||||||
// When run as a cargo subcommand, the first program argument is the subcommand name.
|
// When run as a cargo subcommand, the first program argument is the subcommand name.
|
||||||
// Remove it
|
// Remove it
|
||||||
if let Some(arg1) = args.get(1) {
|
if let Some(arg0) = args.get(0) {
|
||||||
if arg1 == "build-bpf" {
|
if arg0 == "build-bpf" {
|
||||||
args.remove(1);
|
args.remove(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
print!("cargo-build-bpf child: {}", program.display());
|
print!("cargo-build-bpf child: {}", program.display());
|
||||||
|
|
|
@ -27,9 +27,9 @@ fn main() {
|
||||||
};
|
};
|
||||||
// When run as a cargo subcommand, the first program argument is the subcommand name.
|
// When run as a cargo subcommand, the first program argument is the subcommand name.
|
||||||
// Remove it
|
// Remove it
|
||||||
if let Some(arg1) = args.get(1) {
|
if let Some(arg0) = args.get(0) {
|
||||||
if arg1 == "test-bpf" {
|
if arg0 == "test-bpf" {
|
||||||
args.remove(1);
|
args.remove(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
print!("cargo-test-bpf child: {}", program.display());
|
print!("cargo-test-bpf child: {}", program.display());
|
||||||
|
|
Loading…
Reference in New Issue