From: Fred T. Hamster Date: Tue, 17 Dec 2024 02:41:35 +0000 (-0500) Subject: helper script for getting remote builds done X-Git-Tag: 2.140.189^2~55 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=99dcf4a6e28c8f938ef924fecedc77619d6cbe4e;p=feisty_meow.git helper script for getting remote builds done --- diff --git a/scripts/generator/encapsulated_producer.sh b/scripts/generator/encapsulated_producer.sh new file mode 100644 index 00000000..57fcc79d --- /dev/null +++ b/scripts/generator/encapsulated_producer.sh @@ -0,0 +1,30 @@ +############## +# Name : encapsulated producer (for feisty meow building) +# Author : Chris Koeritz +# Purpose: +# Runs the produce_feisty_meow script, assuming that the FEISTY_MEOW_APEX +# variable has been set. This is a useful encapsulated script that can be +# used with the host_strider. +############## +# Copyright (c) 2024-$now By Author. This program is free software; you can +# redistribute it and/or modify it under the terms of the GNU General Public +# License as published by the Free Software Foundation; either version 2 of +# the License or (at your option) any later version. This is online at: +# http://www.fsf.org/copyleft/gpl.html +# Please send any updates to: fred@gruntose.com +############## + +feisty_top=$FEISTY_MEOW_APEX + +if [ -z "$feisty_top" ]; then + echo " +The FEISTY_MEOW_APEX variable has not been set. This indicates that the +Feisty Meow script environment does not exist on this host (which is named +'\$(hostname)'). +" + exit 1 +fi + +bash $feisty_top/scripts/generator/produce_feisty_meow.sh + +