From 0dcdf24da1b90ec53f56ae4bab8ce2fc03939f1a Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 27 Apr 2025 17:29:51 -0500 Subject: [PATCH] Cleanup: Remove 'main_' prefix from fakefile operations to simplify usage. --- data/build/stand_alone/fakefile | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/data/build/stand_alone/fakefile b/data/build/stand_alone/fakefile index 51bef2b..951e15c 100644 --- a/data/build/stand_alone/fakefile +++ b/data/build/stand_alone/fakefile @@ -26,19 +26,19 @@ main: build settings/settings.tacocat build settings/settings.unlink -main_remove: +remove: build settings/settings.remove -main_rm: +rm: build settings/settings.rm -main_rmdir: +rmdir: build settings/settings.rmdir -main_tacocat: +tacocat: build settings/settings.tacocat -main_unlink: +unlink: build settings/settings.unlink install: @@ -50,14 +50,14 @@ help: print print The following operations are available\: - print " - context:'notable'help:context:'reset' Perform the help operation, printing this message." - print " - context:'notable'install:context:'reset' A helper operation that calls the ./install.sh script for the programs." - print " - context:'notable'main:context:'reset' Compilation using the build settings mode for the programs (default)." - print " - context:'notable'main_remove:context:'reset' Compilation using the build settings mode for the remove program." - print " - context:'notable'main_rm:context:'reset' Compilation using the build settings mode for the rm program." - print " - context:'notable'main_rmdir:context:'reset' Compilation using the build settings mode for the rmdir program." - print " - context:'notable'main_tacocat:context:'reset' Compilation using the build settings mode for the tacocat program." - print " - context:'notable'main_unlink:context:'reset' Compilation using the build settings mode for the unlink program." + print " - context:'notable'help:context:'reset' Perform the help operation, printing this message." + print " - context:'notable'install:context:'reset' A helper operation that calls the ./install.sh script for the programs." + print " - context:'notable'main:context:'reset' Compilation using the build settings mode for the programs (default)." + print " - context:'notable'remove:context:'reset' Compilation using the build settings mode for the remove program." + print " - context:'notable'rm:context:'reset' Compilation using the build settings mode for the rm program." + print " - context:'notable'rmdir:context:'reset' Compilation using the build settings mode for the rmdir program." + print " - context:'notable'tacocat:context:'reset' Compilation using the build settings mode for the tacocat program." + print " - context:'notable'unlink:context:'reset' Compilation using the build settings mode for the unlink program." print print The context:'notable'install[context]:'reset' operation supports the context:'notable'work[context]:'reset', context:'notable'verbosity[context]:'reset', and context:'notable'color[context]:'reset' parameters. -- 1.8.3.1