Skip to content

Commit

Permalink
change cli args for sl
Browse files Browse the repository at this point in the history
Summary: IanChilds [noticed](https://www.internalfb.com/diff/D68154321?dst_version_fbid=1001849455091151&transaction_fbid=1824910168258013) that we don't need to use `-i` as we don't care about ignored files

Reviewed By: jdelliot

Differential Revision: D68160315

fbshipit-source-id: 75a17d3e011a3e5d6dbb3904fa5f97a38256d5d9
  • Loading branch information
Yury Samkevich authored and facebook-github-bot committed Jan 14, 2025
1 parent ab97f3e commit 8c48bb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/buck2_file_watcher/src/edenfs/sapling.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pub(crate) async fn get_status<D: AsRef<Path>, F: AsRef<str>, S: AsRef<str>>(
second: Option<S>,
limit_results: usize,
) -> buck2_error::Result<SaplingGetStatusResult> {
let mut args = vec!["status", "--traceback", "-mardui", "--rev", first.as_ref()];
let mut args = vec!["status", "--traceback", "-mardu", "--rev", first.as_ref()];
if let Some(ref second) = second {
args.push("--rev");
args.push(second.as_ref());
Expand Down

0 comments on commit 8c48bb6

Please sign in to comment.