mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Merge from vscode 2c306f762bf9c3db82dc06c7afaa56ef46d72f79 * Fix breaks * Extension management fixes * Fix breaks in windows bundling * Fix/skip failing tests * Update distro * Add clear to nuget.config * Add hygiene task * Bump distro * Fix hygiene issue * Add build to hygiene exclusion * Update distro * Update hygiene * Hygiene exclusions * Update tsconfig * Bump distro for server breaks * Update build config * Update darwin path * Add done calls to notebook tests * Skip failing tests * Disable smoke tests
16 lines
489 B
Bash
Executable File
16 lines
489 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This file establishes a basline for the reposuitory 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
|
|
|
|
SCRIPT_PATH="$(cd "$(dirname $0)" && pwd)"
|
|
SOURCE_FOLDER="${1:-"."}"
|
|
|
|
cd "${SOURCE_FOLDER}"
|
|
echo "[$(date)] Generating ""before"" manifest..."
|
|
find -L . -not -path "*/.git/*" -and -not -path "${SCRIPT_PATH}/*.manifest" -type f > "${SCRIPT_PATH}/before.manifest"
|
|
echo "[$(date)] Done!"
|
|
|