From ce4e41785d5ad4e0f78f202a5a2e064dbab5944d Mon Sep 17 00:00:00 2001 From: Greg Hurrell Date: Mon, 7 Jun 2021 16:13:04 +0200 Subject: [PATCH] feat: add bin/git-cipher symlink as a convenience --- aspects/ssh/index.ts | 2 +- bin/git-cipher | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 120000 bin/git-cipher diff --git a/aspects/ssh/index.ts b/aspects/ssh/index.ts index 1fe6b341..6cff9b2f 100644 --- a/aspects/ssh/index.ts +++ b/aspects/ssh/index.ts @@ -20,7 +20,7 @@ task('install ~/.ssh/config', async () => { // because we won't have the GPG key on the machine yet... // although maybe I should just do that...) if (stats === null) { - fail(`"${src}" does not exist; run "vendor/git-cipher/bin/git-cipher"`); + fail(`"${src}" does not exist; run "bin/git-cipher"`); } else if (stats instanceof Error) { throw stats; } else { diff --git a/bin/git-cipher b/bin/git-cipher new file mode 120000 index 00000000..294e20ec --- /dev/null +++ b/bin/git-cipher @@ -0,0 +1 @@ +../vendor/git-cipher/bin/git-cipher \ No newline at end of file -- 2.40.1