From 3434863f1019b5eaa6c334aa5c78b3b23e412dac Mon Sep 17 00:00:00 2001 From: Andreas Schildbach Date: Sat, 20 Feb 2021 12:42:43 +0100 Subject: [PATCH] Fix typo: rename current_torsock_version to current_torsocks_version. --- Makefile | 4 ++-- current_torsock_version => current_torsocks_version | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename current_torsock_version => current_torsocks_version (100%) diff --git a/Makefile b/Makefile index 922d2fa..adddcaf 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ LAST_TOR_VERSION = $(shell bash last_tor_version.sh) LAST_TORSOCKS_VERSION = $(shell bash last_torsocks_version.sh) TOR_VERSION = $(shell cat current_tor_version) -TORSOCKS_VERSION = $(shell cat current_torsock_version) +TORSOCKS_VERSION = $(shell cat current_torsocks_version) CUR_COMMIT = $(shell git rev-parse --short HEAD) CUR_TAG = v$(TOR_VERSION)-$(CUR_COMMIT) @@ -15,7 +15,7 @@ tag: update_tor_version: echo $(LAST_TOR_VERSION) > current_tor_version - echo $(LAST_TORSOCKS_VERSION) > current_torsock_version + echo $(LAST_TORSOCKS_VERSION) > current_torsocks_version release: test tag git push origin --tags diff --git a/current_torsock_version b/current_torsocks_version similarity index 100% rename from current_torsock_version rename to current_torsocks_version