Move to prebuilt (#170969)

This commit is contained in:
Christof Marti
2022-12-09 16:16:03 +00:00
parent 990ffadcc2
commit 9075378043
8 changed files with 0 additions and 0 deletions

15
.devcontainer/prebuilt/cache/before-cache.sh vendored Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# This file establishes a basline for the repository before any steps in the "prepare.sh"
# are run. Its just a find command that filters out a few things we don't need to watch.
set -e
SOURCE_FOLDER="${1:-"."}"
CACHE_FOLDER="${2:-"$HOME/.devcontainer-cache"}"
cd "${SOURCE_FOLDER}"
echo "[$(date)] Generating ""before"" manifest..."
mkdir -p "${CACHE_FOLDER}"
find -L . -not -path "*/.git/*" -and -not -path "${CACHE_FOLDER}/*.manifest" -type f > "${CACHE_FOLDER}/before.manifest"
echo "[$(date)] Done!"