mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:15:44 +01:00
14 lines
420 B
Plaintext
14 lines
420 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if [[ "$@" == *".hog"* ]]; then
|
||
|
exec python3 -m posthog.hogql.cli --compile "$@"
|
||
|
else
|
||
|
echo "$0 - the Hog compilër! 🦔+🕶️= Hoge"
|
||
|
echo ""
|
||
|
echo "Usage: bin/hoge <file.hog> [output.hoge] compile .hog into .hoge"
|
||
|
echo " bin/hog <file.hog> run .hog source code"
|
||
|
echo " bin/hog <file.hoge> run compiled .hoge bytecode"
|
||
|
exit 1
|
||
|
fi
|