Skip to content

Commit

Permalink
Moved the compilation and clean scripts into the top-level directory …
Browse files Browse the repository at this point in the history
…for consistency
  • Loading branch information
pavel-kirienko committed May 8, 2019
1 parent f6390f5 commit 025b6ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ job:
image: ubuntu:16.04
script:
- git submodule update --init --recursive
- cd specification
- ./compile.sh
artifacts:
paths:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ and the following Python packages:
- `pygments` (for Debian-based systems, use APT package `python-pygments`)
- [`pydsdl`](https://github.com/UAVCAN/pydsdl)

When done, `cd specification` and run `compile.sh`.
When done, run `./compile.sh`.

## Editing

Expand Down
2 changes: 2 additions & 0 deletions specification/clean.sh → clean.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

cd specification

rm -f *.aux
rm -f *.lof
rm -f *.lot
Expand Down
1 change: 1 addition & 0 deletions specification/compile.sh → compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ function once()

./clean.sh || exit 1

cd specification
once $SRC.tex || exit 1
#bibtex $SRC || exit 1
once $SRC.tex || exit 1
Expand Down

0 comments on commit 025b6ec

Please sign in to comment.