-
Notifications
You must be signed in to change notification settings - Fork 1
Closed
Labels
Description
We need to provide example conda .yml files (also for simplebuild-dgcode) as well as make sure the following bash snippet is advertised for the ergonomics (they work since bash functions has precedence over PATH items):
function simplebuild()
{
real_sb_cmd=$(which unwrapped_simplebuild 2>/dev/null) || ( echo "error: simplebuild not available" 1>&2 ; return 1 )
if [ $? == 0 -a "x${real_sb_cmd}" != "x" ]; then
"${real_sb_cmd}" "$@" && eval "$(${real_sb_cmd} --env-setup)"
fi
unset real_sb_cmd
}
function sb() { simplebuild "$@"; }Reactions are currently unavailable