Files
clyx/dist-python.sh
T

10 lines
288 B
Bash
Raw Normal View History

2026-07-02 23:26:38 +03:00
#!/bin/sh
# A script to prepare a distributable Python version of Clyx
# Run strictly from this directory
TARGET="$1"
[ -z $TARGET ] && TARGET='dist/clyx_py/clyx'
mkdir -p $TARGET
2026-07-03 10:02:18 +03:00
cp clyx-python/clyx/clyx.py lib.clx clyx_repl.clx test.clx $TARGET/
2026-07-02 23:26:38 +03:00
echo "Distribution created at $TARGET"