Skip to content

Instantly share code, notes, and snippets.

View udondan's full-sized avatar
🤠

Daniel Schroeder udondan

🤠
View GitHub Profile
@udondan
udondan / cdk
Last active July 24, 2020 06:48
Disabling fancy AWS CDK output
#!/bin/bash
if [[ "$1" != "deploy" ]]; then
/usr/local/bin/cdk "$@"
exit
fi
CDK_LOG=$(mktemp)
tail -f "${CDK_LOG}" &
PID=$!