/check.sh (1f49d20bfca22ddee132b62a37c103610d08e211) (391 bytes) (mode 100644) (type blob)
#!/usr/bin/env bash
if [[ "$MAPSCRIPT" ]]; then
msg=$(./pjass tests/common.j tests/Blizzard.j "$1" )
ret=$?
else
msg=$(./pjass "$1")
ret=$?
fi
if [[ "$PROF" ]]; then
gprof pjass.exe gmon.out > "$1-analysis.txt"
fi
if [[ "$ret" == 1 ]]; then
echo "Error in file '$1', but there should be none"
if [[ "$VERBOSE" ]]; then
echo "pjass output:"
echo $msg
fi
exit 1
fi
Mode |
Type |
Size |
Ref |
File |
100644 |
blob |
164 |
fe00ea4e0a56174ab0598427be2f53a8ed42efab |
.gitignore |
100644 |
blob |
2419 |
07e073b56855f7311222a430475cdd5d65a22f52 |
Makefile |
100644 |
blob |
391 |
1f49d20bfca22ddee132b62a37c103610d08e211 |
check.sh |
100644 |
blob |
251 |
77cc7498114662cff955ad94eb1b1809c89b2233 |
fail.sh |
100644 |
blob |
26451 |
8b5dc95117d866ae21aa190f1b18b7f60c366685 |
grammar.y |
100644 |
blob |
22236 |
a0f506eb2bb86301d4ab0b3ee73aa7964fb5d94b |
misc.c |
100644 |
blob |
3664 |
3e413370f4eced5c23b7954e53f66a15aaf8f535 |
misc.h |
100644 |
blob |
1302 |
13d65e05aca85cddd2f539b14d98cfbf1c622752 |
notes.txt |
100644 |
blob |
764 |
270df8583e78c80f366a8ab431fab673d89446d5 |
readme.txt |
040000 |
tree |
- |
2f736e3985eab5b3c8ba4181754a986901e1a073 |
tests |
100644 |
blob |
5891 |
d2f9b79e9d57395b7462b41c93d762aace079942 |
token.l |
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"
Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/vrtc/pjass
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/vrtc/pjass
Clone this repository using git:
git clone git://git.rocketgit.com/user/vrtc/pjass
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main