From 065d6bde1c9aab46addc6c90bcbdb575e03cd03e Mon Sep 17 00:00:00 2001 From: Eriq Taing Date: Thu, 22 May 2025 01:51:49 -0400 Subject: [PATCH] remove example script --- files/scripts/example.sh | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 files/scripts/example.sh diff --git a/files/scripts/example.sh b/files/scripts/example.sh deleted file mode 100644 index fdb2e04..0000000 --- a/files/scripts/example.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -# Tell this script to exit if there are any errors. -# You should have this in every custom script, to ensure that your completed -# builds actually ran successfully without any errors! -set -oue pipefail - -# Your code goes here. -echo 'This is an example shell script' -echo 'Scripts here will run during build if specified in recipe.yml'