From ef30fa510f5bac167ec9e13b83d2abb13238c22e Mon Sep 17 00:00:00 2001 From: NOYB Date: Wed, 12 Oct 2016 18:51:05 -0700 Subject: [PATCH] Replace underscore with hyphen in option names Thanks Jorge (cherry picked from commit 30786a9d2486d88cb92cbb0ecb10586b39c32c65) --- src/etc/phpshellsessions/gitsync | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/etc/phpshellsessions/gitsync b/src/etc/phpshellsessions/gitsync index 269add5438..26874c75ba 100644 --- a/src/etc/phpshellsessions/gitsync +++ b/src/etc/phpshellsessions/gitsync @@ -55,9 +55,9 @@ $valid_args = array( "--diff" => "\tPerform a copy of only the different and missing files.\n" . "\tRecommended for SSD if system has files modified by any method other\n" . "\tthan gitsync.\n", - "--show_files" => "\tShow the updated, different and missing files.\n" . + "--show-files" => "\tShow the updated, different and missing files.\n" . "\t(when used with --minimal and --diff options)\n", - "--show_command" => "\tShow the constructed command.\n", + "--show-command" => "\tShow the constructed command.\n", "--dry-run" => "\tDry-run only. No files copied.\n", "--help" => "\tDisplay this help list.\n" ); @@ -384,7 +384,7 @@ if (isset($args["--minimal"])) { # Get the path of each updated file. preg_match_all('@(?:^(.+?)$)@sim', $updated_files, $updated_files_array, PREG_PATTERN_ORDER); - if(isset($args["--show_files"])) { + if(isset($args["--show-files"])) { echo "===> Updated Files: \n"; print_r($updated_files_array[1]); } @@ -450,7 +450,7 @@ if(isset($args["--diff"])) { $missing_files_array[1][$key] = $file; } - if(isset($args["--show_files"])) { + if(isset($args["--show-files"])) { echo "===> Different Files: \n"; print_r($different_files_array[1]); echo "===> Missing Files: \n"; @@ -483,7 +483,7 @@ echo "===> Installing $qty_files_to_copy new files...\n"; $command = "cd $CODIR/pfSenseGITREPO/pfSenseGITREPO ; tar -cpf - {$tar_options} {$files_to_copy} | (cd / ; tar -Uxpf -)"; if (!empty($files_to_copy)) { - if(isset($args["--show_command"])) { + if(isset($args["--show-command"])) { echo "===> Command: \n$command\n"; } if(!isset($args["--dry-run"])) {