Run valet install after compose update (fix #99)
This commit is contained in:
@@ -90,7 +90,8 @@ Just run `topgrade`. It will run the following steps:
|
|||||||
* Node
|
* Node
|
||||||
* Run `yarn global update` if yarn is installed.
|
* Run `yarn global update` if yarn is installed.
|
||||||
* Run `npm update -g` if NPM is installed and `npm root -g` is a path inside your home directory.
|
* Run `npm update -g` if NPM is installed and `npm root -g` is a path inside your home directory.
|
||||||
* Run `composer global update` if Composer's home directory is inside the home directory of the user.
|
* Run `composer global update` if Composer's home directory is inside the home directory of the
|
||||||
|
user. Run `valet install` after.
|
||||||
* Upgrade Atom packages
|
* Upgrade Atom packages
|
||||||
* Run `gem upgrade --user-install` if `~/.gem` exists
|
* Run `gem upgrade --user-install` if `~/.gem` exists
|
||||||
* **Linux**: Update Flatpak packages
|
* **Linux**: Update Flatpak packages
|
||||||
|
|||||||
@@ -248,6 +248,11 @@ pub fn run_composer_update(base_dirs: &BaseDirs, dry_run: bool) -> Option<(&'sta
|
|||||||
.spawn()?
|
.spawn()?
|
||||||
.wait()?
|
.wait()?
|
||||||
.check()?;
|
.check()?;
|
||||||
|
|
||||||
|
if let Some(valet) = utils::which("valet") {
|
||||||
|
Executor::new(&valet, dry_run).arg("install").spawn()?.wait()?.check()?;
|
||||||
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}()
|
}()
|
||||||
.is_ok();
|
.is_ok();
|
||||||
|
|||||||
Reference in New Issue
Block a user