You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
337 B

  1. #!/bin/bash
  2. if [ -z "$BUILD_CONFIG" ] ; then
  3. echo "Set BUILD_CONFIG first"
  4. false
  5. else
  6. echo "Loading config file: config-$BUILD_CONFIG"
  7. . config-$BUILD_CONFIG
  8. # echo " Ubuntu version: ${VERSION}"
  9. # echo " Input ISO: ${ISONAME}"
  10. # echo " from: ${ORIGURL}"
  11. # echo " Output ISO: ${OUTPUT}"
  12. fi