Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "states": [ | |
| 3 ["clean", ["chrome_not_installed.prop"]], | |
| 4 ["chrome_installed", ["chrome_installed.prop"]] | |
| 5 ], | |
| 6 "actions": [ | |
| 7 ["install chrome", "mini_installer.exe --chrome --multi-install"], | |
| 8 ["uninstall chrome", "mini_installer.exe --chrome --uninstall"] | |
|
gab
2013/07/30 20:44:14
This should do the real uninstall imo, i.e. run wh
gab
2013/07/31 13:45:16
For now I'm fine with this being a script that doe
grt (UTC plus 2)
2013/07/31 17:20:05
Note that the command to run to uninstall the MSI
grt (UTC plus 2)
2013/07/31 17:20:05
The correct uninstall command here is "--uninstall
sukolsak
2013/07/31 18:20:30
Done.
sukolsak
2013/07/31 18:20:30
Done.
| |
| 9 ], | |
| 10 "tests": [ | |
| 11 ["clean", "install chrome", "chrome_installed", "uninstall chrome", "clean"] | |
| 12 ] | |
| 13 } | |
| OLD | NEW |