Skip to content

Setup post-commit hook to withstand template based creations #102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .devcontainer/postStartCommand.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ supervisord
supervisorctl reread
supervisorctl update

# Run the build script to perform a one-time build for static preview
# Set up post-commit hook and also run the build script to perform a one-time build for static preview
ln -fs /usr/local/bin/post-commit .git/hooks/post-commit
/usr/local/bin/static-preview-build.sh
2 changes: 1 addition & 1 deletion .devcontainer/refreshTools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ sudo cp ./spark-sdk-dist/proxy.js /workspaces/proxy.js
sudo mv ./spark-sdk-dist/proxy.js /usr/local/bin/proxy.js
sudo mv ./spark-sdk-dist/spark.package.json /workspaces/spark.package.json
sudo mv ./spark-sdk-dist/static-preview-build.sh /usr/local/bin/static-preview-build.sh
sudo mv ./spark-sdk-dist/post-commit ${WORKSPACE_DIR}/.git/hooks/post-commit
sudo mv ./spark-sdk-dist/post-commit /usr/local/bin/post-commit

# Upgrade the Spark Tools package
if [ -f "$TOOLS_MARKER_FILE" ] && [ "$(cat "$TOOLS_MARKER_FILE")" == "$(cat ./spark-sdk-dist/spark-tools-version)" ]; then
Expand Down