From 40bb09e37b489905741bed4840a4e8b5e8fede26 Mon Sep 17 00:00:00 2001 From: Niklas Fiekas Date: Sat, 28 Mar 2020 00:18:18 +0100 Subject: [PATCH] disable old deploy scripts if necessary, they could still be used, with some care --- bin/prod/deploy | 3 +++ bin/prod/deploy-assets | 3 +++ 2 files changed, 6 insertions(+) diff --git a/bin/prod/deploy b/bin/prod/deploy index e8c3510778..9dc17d711e 100755 --- a/bin/prod/deploy +++ b/bin/prod/deploy @@ -1,6 +1,9 @@ #!/bin/sh -e . bin/lilarc +echo "Use ./bin/ci-deploy.py if possible, or check that the symlink structure is compatible" +exit 1 + mode=$1 if [ -z $mode ]; then diff --git a/bin/prod/deploy-assets b/bin/prod/deploy-assets index 7fa3449b59..a169795f66 100755 --- a/bin/prod/deploy-assets +++ b/bin/prod/deploy-assets @@ -1,6 +1,9 @@ #!/bin/sh -e . bin/lilarc +echo "Use ./bin/ci-deploy.py if possible, or check that the symlink structure is compatible" +exit 1 + to=$1 mode=${2-build} # build | css | js | upload