We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3097d8 commit 3e3b2a7Copy full SHA for 3e3b2a7
crates/cli/src/lib.rs
@@ -248,10 +248,10 @@ impl Install {
248
}
249
250
251
-// Update extension line in the ini file.
252
-//
253
-// Write to a temp file then copy it to a given path. If this fails, then try
254
-// `sudo mv` on unix.
+/// Update extension line in the ini file.
+///
+/// Write to a temp file then copy it to a given path. If this fails, then try
+/// `sudo mv` on unix.
255
fn update_ini_file(php_ini: &PathBuf, ext_name: &str, disable: bool) -> anyhow::Result<()> {
256
let current_ini_content = std::fs::read_to_string(php_ini)?;
257
let mut ext_line = format!("extension={ext_name}");
0 commit comments