Difference between revisions of "How to create a new BOARD18 download"

From BOARD18 Project WIKI
Jump to navigation Jump to search
(Initial version of this page)
 
m
Line 32: Line 32:


== Setup the Download on the Server==
== Setup the Download on the Server==
[[Category:HowTo]]

Revision as of 16:11, 2 September 2013

These instructions assume that you already have a board18 development environment and access to the branch for which the download is to be created.

Perform these steps on your development PC

  • Checkout the branch for the required board18 release.
  • Checkout the branch for the required gamebox release.
  • Open a command line window.
  • cd to the BOARD18 directory.
  • Enter on command line:
 
rm ~/board18.zip
rm ~/utility.zip
zip ~/board18.zip *.html *.php 
zip -r ~/board18.zip php scripts style
zip ~/board18.zip images/*.*
zip ~/board18.zip Documentation/Board18Design.pdf
zip ~/board18.zip Documentation/ReleaseNotes.txt
zip ~/board18.zip Documentation/README.txt
cd php
zip ~/utility.zip config.php
cd ../utility
zip ~/utility.zip *.*
  • cd to GAMEBOX directory.
  • Enter on command line:
cd boxes
zip -r ~/board18.zip images
zip -r ~/utility.zip control
  • Using FTP, move the 2 zip files to the download server.

Setup the Download on the Server