X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fgenerator%2Fwhack_build.sh;h=b050ca380275cffaccbdb8b09acba400b8d59ad9;hb=a272a6ae4172dfb1451d1d5a36390c23d7f056ee;hp=f0830a94b92c5f148f71bc00b24a9f7ada2088a3;hpb=d5b49ffce0af0a5731a4289ae345f7fe100d9953;p=feisty_meow.git diff --git a/scripts/generator/whack_build.sh b/scripts/generator/whack_build.sh index f0830a94..b050ca38 100644 --- a/scripts/generator/whack_build.sh +++ b/scripts/generator/whack_build.sh @@ -27,9 +27,9 @@ function whack_single_build_area() # avoid accidentally removing important stuff if our variables have not been previously # established. - if [ -z "$GENERATED_DIR" -o -z "$TEMPORARIES_DIR" ]; then - echo The build whacking script cannot run because either the GENERATED_DIR - echo variable or the TEMPORARIES_DIR variable have not been set. This makes + if [ -z "$FEISTY_MEOW_GENERATED_STORE" -o -z "$TEMPORARIES_PILE" ]; then + echo The build whacking script cannot run because either the FEISTY_MEOW_GENERATED_STORE + echo variable or the TEMPORARIES_PILE variable have not been set. This makes echo it unsafe to remove anything in the build products. exit 1 fi @@ -37,24 +37,29 @@ function whack_single_build_area() # kerzap. the cleanups in production directory remove older locations of generated files. rm -rf \ "$FEISTY_MEOW_APEX/generatedJUnitFiles" \ - "$GENERATED_DIR/clam_tmp" \ - "$GENERATED_DIR/logs" \ - "$PRODUCTION_DIR/__build_"*.h \ - "$PRODUCTION_DIR/manifest.txt" \ - "$RUNTIME_DIR/binaries" \ - "$RUNTIME_DIR/install" \ - "$RUNTIME_DIR/waste" \ - "$TEMPORARIES_DIR" \ - "$PRODUCTION_DIR/clam_bin" \ - "$PRODUCTION_DIR/binaries" \ - "$PRODUCTION_DIR/install" \ - "$PRODUCTION_DIR/logs" \ - "$PRODUCTION_DIR/waste" + "$FEISTY_MEOW_GENERATED_STORE/clam_tmp" \ + "$FEISTY_MEOW_GENERATED_STORE/logs" \ + "$PRODUCTION_STORE/__build_"*.h \ + "$PRODUCTION_STORE/manifest.txt" \ + "$RUNTIME_PATH/binaries" \ + "$RUNTIME_PATH/install" \ + "$RUNTIME_PATH/waste" \ + "$TEMPORARIES_PILE" \ + "$PRODUCTION_STORE/clam_bin" \ + "$PRODUCTION_STORE/binaries" \ + "$PRODUCTION_STORE/install" \ + "$PRODUCTION_STORE/logs" \ + "$PRODUCTION_STORE/waste" +# last few mentioning production dir are to clean older code. # echo $(date): " cleaning generated files in source hierarchy..." if [ "$clean_src" == "clean" -o "$clean_src" == "CLEAN" ]; then echo $(date): " ** aggressive cleaning activated..." + + # get rid of the build binaries. + rm -rf "$CLAM_BINARIES" + perl "$FEISTY_MEOW_SCRIPTS/files/zapdirs.pl" "$FEISTY_MEOW_APEX" >>"$CRUDFILE" fi