From 7dd0c044cd02f20d13bafba1bacd774df95de1fa Mon Sep 17 00:00:00 2001 From: Robert Orzanna Date: Sun, 9 Jul 2017 10:22:08 +0200 Subject: [PATCH 1/2] Use hidden folder on Linux --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fd622fc..247c747 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ this will be detected at the next run of this program and then tried again. The files are being saved in your User directory in a folder named `telegram_backup`. Under windows, this would typically be under `C:\Users\\telegram_backup`. Linux users should look unter -`/home//telegram_backup`. +`/home//.telegram_backup`. You can change this directory by supplying `--target ` when calling Telegram_Backup. From 79b68bd93d0b1bdf297d82c3672164da625b88e6 Mon Sep 17 00:00:00 2001 From: Fabian Schlenz Date: Thu, 8 Mar 2018 22:23:20 +0100 Subject: [PATCH 2/2] deploy.sh: Don't fail if the Dockerfile can't be committed (possibly because it already had the correct version in it). --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 4ba05ea..db62fd4 100755 --- a/deploy.sh +++ b/deploy.sh @@ -35,7 +35,7 @@ echo "Updating the Dockerfile..." sed -i "s/ENV JAR_VERSION .\+/ENV JAR_VERSION $VERSION/g" Dockerfile || error "Couldn't modify Dockerfile." echo "Committing the new Dockerfile..." -git commit -m "Bumping the version to $VERSION" Dockerfile || error "Couldn't commit the new Dockerfile." +git commit -m "Bumping the version to $VERSION" Dockerfile echo "Tagging the new version..." git tag -a "$VERSION" -m "Version $VERSION" || error