10 lines
271 B
Bash
Executable File
10 lines
271 B
Bash
Executable File
#!/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
|
|
cp clyx.py lib.clx clyx_repl.clx test.clx $TARGET/
|
|
echo "Distribution created at $TARGET"
|