diff --git a/Makefile b/Makefile index d2da1cb..73ec2f8 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ .RECIPEPREFIX=> -VERSION=1.6.0 +VERSION=1.6.1 default: > clear diff --git a/Program.cs b/Program.cs index 09ec98b..d8a7b03 100644 --- a/Program.cs +++ b/Program.cs @@ -6,7 +6,7 @@ public class Program { private static EnumerationOptions enumOptions = new EnumerationOptions(); static async Task Main(string[] args) { // Version - string version = "1.6.0"; + string version = "1.6.1"; // Lists and dictionaries string[] sourceList = new string[0], destinationList = new string[0], extensionList = new string[0]; Dictionary sourceInfoDictionary = new Dictionary(); @@ -330,7 +330,7 @@ static async Task Main(string[] args) { Logger.Info("Creating compressed backup: " + backupFileName); backupFileName = backupFolder + Path.DirectorySeparatorChar + backupFileName; try { - ZipFile.CreateFromDirectory(arguments.destination, backupFileName); + ZipFile.CreateFromDirectory(arguments.source, backupFileName); Logger.Success("Created compressed backup (" + Logger.HumanReadableSize((UInt64)new FileInfo(backupFileName).Length) + ")"); } catch(Exception e) { diff --git a/github-updater.backup-utility-cs.json b/github-updater.backup-utility-cs.json index dcd9b6c..e4171ec 100644 --- a/github-updater.backup-utility-cs.json +++ b/github-updater.backup-utility-cs.json @@ -1,7 +1,12 @@ { - "latest": "1.6.0", + "latest": "1.6.1", "keep": [], "releases": [ + { + "tag": "1.6.1", + "linux": "backup-utility-1.6.1-linux-x64.tar.gz", + "win": "backup-utility-1.6.1-win-x64.zip" + }, { "tag": "1.6.0", "linux": "backup-utility-1.6.0-linux-x64.tar.gz", diff --git a/transfer/local/options.sh b/transfer/local/options.sh index 86f7157..db6e34c 100644 --- a/transfer/local/options.sh +++ b/transfer/local/options.sh @@ -1,4 +1,4 @@ #!/bin/bash -VERSION=1.6.0 +VERSION=1.6.1 DEBUG=0 RELEASE=1 \ No newline at end of file