From 81f0d669c896d64767de52d03151ad63ca8c3393 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Sun, 23 Oct 2022 19:18:36 +0200 Subject: [PATCH] CI: add note about running scripts locally --- .build.yml | 2 ++ .ci/note.sh | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100755 .ci/note.sh diff --git a/.build.yml b/.build.yml index 5b4e4de0..77e6b62c 100644 --- a/.build.yml +++ b/.build.yml @@ -2,6 +2,8 @@ image: alpine/edge packages: - sudo tasks: + - note: | + pmbootstrap/.ci/note.sh - shellcheck: | cd pmbootstrap sudo .ci/shellcheck.sh diff --git a/.ci/note.sh b/.ci/note.sh new file mode 100755 index 00000000..b5fd0cf7 --- /dev/null +++ b/.ci/note.sh @@ -0,0 +1,6 @@ +#!/bin/sh -e + +printf "\n" +printf "PROTIP: use" +printf " \e[1;32mpmbootstrap ci\e[0m" +printf " to run these scripts locally.\n"