From b0df7bebb06c74bed76f078d7553982e738beb96 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Thu, 22 May 2025 16:11:50 -0500 Subject: [PATCH] feat: remov scripts --- scripts/deploy.sh | 3 --- scripts/invalidate-cache.sh | 10 ---------- 2 files changed, 13 deletions(-) delete mode 100755 scripts/deploy.sh delete mode 100644 scripts/invalidate-cache.sh diff --git a/scripts/deploy.sh b/scripts/deploy.sh deleted file mode 100755 index 6591b76..0000000 --- a/scripts/deploy.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -pnpm build && aws s3 sync ./dist/ s3://barrettruth.com --delete diff --git a/scripts/invalidate-cache.sh b/scripts/invalidate-cache.sh deleted file mode 100644 index c103fb9..0000000 --- a/scripts/invalidate-cache.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh - -if [ -z "$1" ]; then - echo "Must specify AWS cloudfront distribution to invalidate." - exit -fi - -aws cloudfront create-invalidation \ - --distribution-id "$1" \ - --paths "/*"