mirror of
https://github.com/fazo96/pbs.git
synced 2025-01-30 14:54:20 +01:00
7 lines
258 B
Bash
Executable File
7 lines
258 B
Bash
Executable File
mkdir -p bin lib
|
|
echo '#!/usr/bin/env node' > bin/pert
|
|
coffee -b -c --no-header -p src/pert-cli.coffee >> bin/pert
|
|
chmod +x bin/pert
|
|
coffee -b -c --no-header -p src/pert.coffee > lib/pert.js
|
|
coffee -b -c --no-header -p src/pert-ui.coffee > client/pert-ui.js
|