Skip to content

Commit

Permalink
Add make command to build and deploy
Browse files Browse the repository at this point in the history
Often you want a single command to build and deploy the iso and upgrade
tarball.  Add it as "make" which just calls the other commands.

Signed-off-by: Jason Andryuk <[email protected]>
  • Loading branch information
jandryuk committed Oct 12, 2021
1 parent 1c3ef1d commit 3ded015
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions cmds/make
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#! /bin/bash

make_describe() {
echo "Build all the images and then deploy the iso and update."
}

make_need_conf() { return 0; }

make_main() {
call_cmd "build"
call_cmd "deploy" "iso" "update"
}

0 comments on commit 3ded015

Please sign in to comment.