mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 17:10:22 +03:00
21 lines
446 B
Bash
21 lines
446 B
Bash
|
#! /usr/bin/env bash
|
||
|
|
||
|
cd "$(dirname "$0")"
|
||
|
|
||
|
if [[ $1 == "" ]]; then
|
||
|
echo "USAGE: $1 DST where DST is the directory in which files have to be copied"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
dest_dir=$1
|
||
|
|
||
|
make -C examples/allocations_familiales allocations_familiales.html
|
||
|
make grammar.html
|
||
|
make catala.html
|
||
|
make legifrance_catala.html
|
||
|
|
||
|
cp examples/allocations_familiales/allocations_familiales.html $1/
|
||
|
cp grammar.html $1/
|
||
|
cp catala.html $1/
|
||
|
cp legifrance_catala.html $1/
|