mirror of
https://github.com/apple/pkl.git
synced 2026-03-18 15:23:58 +01:00
9 lines
188 B
Bash
Executable File
9 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
files=`git diff --cached --name-status`
|
|
|
|
if [[ $files =~ .circleci/config.pkl ]]; then
|
|
pkl eval .circleci/config.pkl -o .circleci/config.yml
|
|
git add .circleci/config.yml
|
|
fi
|