6 lines
125 B
Bash
Executable file
6 lines
125 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd "$(dirname "$(realpath "$0")")"
|
|
|
|
mkdir -p bin
|
|
deno compile --output=bin/reciper --allow-read src/main.ts
|