![]() |
What's builds file for? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: What's builds file for? (/showthread.php?tid=77679) |
What's builds file for? - nc03061981 - 10-03-2020 File :: builds PHP Code: #!/usr/bin/env php RE: What's builds file for? - InsiteFX - 10-03-2020 It's nothing for you to worry about it's for building releases you do not need it. RE: What's builds file for? - nc03061981 - 10-03-2020 (10-03-2020, 07:25 AM)InsiteFX Wrote: It's nothing for you to worry about it's for building releases you do not need it. Thanks, i will delete it RE: What's builds file for? - MGatner - 10-03-2020 It’s actually for changing your project to use the latest development version of the framework. For example if there is a feature of CI4 since the last release (4.0.4) that you want to use in your project then you can run `builds development` and it will switch your dependencies to point to the latest develop branch of the repo. This is very handy when working on or testing code for future releases. RE: What's builds file for? - nc03061981 - 10-03-2020 (10-03-2020, 08:49 AM)MGatner Wrote: It’s actually for changing your project to use the latest development version of the framework. For example if there is a feature of CI4 since the last release (4.0.4) that you want to use in your project then you can run `builds development` and it will switch your dependencies to point to the latest develop branch of the repo. This is very handy when working on or testing code for future releases. Thank you so much MGatner |