Skip to content

Commit 0e3f895

Browse files
dilawarXenira
andauthored
Update crates/cli/src/lib.rs
Co-authored-by: Xenira <[email protected]>
1 parent 4f87f66 commit 0e3f895

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

crates/cli/src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,11 +272,11 @@ fn update_ini_file(php_ini: &PathBuf, ext_name: &str, disable: bool) -> anyhow::
272272
Ok(())
273273
}
274274

275-
// Copy extension, if fails, try with sudo cp.
276-
//
277-
// Checking if we have write permission for ext_dir may fail due to ACL, group
278-
// list and and other nuances. See
279-
// https://doc.rust-lang.org/std/fs/struct.Permissions.html#method.readonly.
275+
/// Copy extension, if fails, try with sudo cp.
276+
///
277+
/// Checking if we have write permission for ext_dir may fail due to ACL, group
278+
/// list and and other nuances. See
279+
/// https://doc.rust-lang.org/std/fs/struct.Permissions.html#method.readonly.
280280
fn copy_extension(ext_path: &Utf8PathBuf, ext_dir: &PathBuf) -> anyhow::Result<()> {
281281
if let Err(_e) = std::fs::copy(ext_path, ext_dir) {
282282
#[cfg(unix)]

0 commit comments

Comments
 (0)