Skip to content

Commit

Permalink
1.5.5: Fixed error in help message
Browse files Browse the repository at this point in the history
  • Loading branch information
Pyrix25633 committed Aug 27, 2022
1 parent 75f93d7 commit 4204799
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Arguments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public void Parse(string[] args) {
Console.WriteLine(" -l, --log Logs to file");
Console.WriteLine(" -b, --backup Makes a compressed copy of the destination folder after the operation");
Console.WriteLine(" -f, --file [FILENAME] Saves the command to a script");
Console.WriteLine(" -h, --help [DIRECTORY] Prints help message and exits");
Console.WriteLine(" -h, --help Prints help message and exits");
Console.ResetColor();
help = true;
break;
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.RECIPEPREFIX=>
VERSION=1.5.4
VERSION=1.5.5

default:
> clear
Expand Down
3 changes: 2 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
public class Program {
static void Main(string[] args) {
// Version
string version = "1.5.4";
string version = "1.5.5";
// Lists
string[] sourceList = new string[0], destinationList = new string[0], extensionList = new string[0];
DirectoryEntry[] sourceInfoList = new DirectoryEntry[0], destinationInfoList = new DirectoryEntry[0],
Expand Down Expand Up @@ -107,6 +107,7 @@ static void Main(string[] args) {
else {
Logger.Info("Extension list not set, only file size will be used to compare files");
}
//Compressed Backup
if(arguments.backup) {
Logger.Info("Compressed backup: yes");
backupFolder = arguments.destination + "-backups";
Expand Down
2 changes: 1 addition & 1 deletion transfer/local/options.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
VERSION=1.5.4
VERSION=1.5.5
DEBUG=0
RELEASE=1

0 comments on commit 4204799

Please sign in to comment.