File size: 470 Bytes
07c3cdd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
CLI::taskName("browser-cache-files-upgrade");

CLI::taskDescription(<<<EOT
    Safe upgrade for files cached by the browser

    This command should be run after any upgrade/modification of files cached by the browser.
EOT
);

CLI::taskRun("runBrowserCacheFiles");

function runBrowserCacheFiles($command, $args)
{
    CLI::logging("Safe upgrade for files cached by the browser\n");

    G::browserCacheFilesSetUid();

    CLI::logging("Upgrade successful\n");
}