mirror of
https://github.com/LukeSmithxyz/based.cooking.git
synced 2024-11-27 16:05:44 +00:00
let's hope that works
This commit is contained in:
parent
e4878d215d
commit
aa9ce687d1
17
.github/workflows/scripts/check-size.sh
vendored
17
.github/workflows/scripts/check-size.sh
vendored
@ -11,15 +11,24 @@ check_size() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
check_md_name() {
|
||||||
|
shouldname="$(echo "$1" |
|
||||||
|
iconv --to-code=utf-8 |
|
||||||
|
sed "s/^\(src\/\)\?/src\//" |
|
||||||
|
tr '[:upper:]' '[:lower:]' |
|
||||||
|
tr ' ' '-')"
|
||||||
|
if [ "$shouldname" != "$1" ]; then
|
||||||
|
echo "$1 should be named $shouldname."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
git diff --name-only `git merge-base origin/master HEAD` | while IFS= read -r file; do
|
git diff --name-only `git merge-base origin/master HEAD` | while IFS= read -r file; do
|
||||||
case "$file" in
|
case "$file" in
|
||||||
*.webp)
|
*.webp)
|
||||||
echo "Checking size of $file"
|
echo "Checking size of $file"
|
||||||
check_size $file
|
check_size $file
|
||||||
;;
|
;;
|
||||||
*)
|
*.md) check_md_name "$file" ;;
|
||||||
echo "Skipping $file"
|
|
||||||
;;
|
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -14,11 +14,11 @@
|
|||||||
## Directions
|
## Directions
|
||||||
|
|
||||||
1. Peel Butternut squash and discard both ends. Cut in half lengthwise, scoop and discard seeds. Cut in half lengthwise again.
|
1. Peel Butternut squash and discard both ends. Cut in half lengthwise, scoop and discard seeds. Cut in half lengthwise again.
|
||||||
2. Place face down on greased baking sheet. Rotate to roast the other face after 20 minutes, Check at 45 mins with a toothpick for softness.
|
2. Place face down on greased baking sheet. Rotate to roast the other face after 20 minutes, Check at 45 mins with a toothpick for softness.
|
||||||
3. Cut up into 2 inch chunks and toss into stand mixer. Mix on high and add a half stick of butter and salt to taste. Stir in half of the St. Augur blue cheese.
|
3. Cut up into 2 inch chunks and toss into stand mixer. Mix on high and add a half stick of butter and salt to taste. Stir in half of the St. Augur blue cheese.
|
||||||
4. Pour into casserole dish. Stir in any extra blue cheese to taste or crumble on top. Lower oven to 300 and bake the mashed squash for 15 minutes.
|
4. Pour into casserole dish. Stir in any extra blue cheese to taste or crumble on top. Lower oven to 300 and bake the mashed squash for 15 minutes.
|
||||||
5. Garnish with chopped chives on top.
|
5. Garnish with chopped chives on top.
|
||||||
|
|
||||||
## Contribution
|
## Contribution
|
||||||
- Joe Powerhouse
|
|
||||||
- BTC: 1KPxw9js2VukakhMv2wUUFUQZnHQL842ju
|
- Joe Powerhouse, BTC: 1KPxw9js2VukakhMv2wUUFUQZnHQL842ju
|
Loading…
Reference in New Issue
Block a user